Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #1779

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The best way to get started is to jump straight in to one of the [samples](https
Inspect (Inspect.exe) is a Windows-based tool that enables you select any UI element and view the element's accessibility data. You can read more about Inspect on its [Windows Dev Center](https://msdn.microsoft.com/en-us/library/windows/desktop/dd318521(v=vs.85).aspx) page.
#### How does "inspect.exe" relate to WinAppDriver?
Inspect allows users to find and locate element inside an application window. Once a desired element is located and in-focus by Inspect, users can take note of its attribute data, and ultimately refer back to it in testing scripts for WinAppDriver to interact against.
For example, in the [Calaculator Test](https://github.com/Microsoft/WinAppDriver/tree/master/Samples/C%23/CalculatorTest) sample:
For example, in the [Calculator Test](https://github.com/Microsoft/WinAppDriver/tree/master/Samples/C%23/CalculatorTest) sample:
```c++
session.FindElementByXPath("//Button[@AutomationId=\"equalButton\"]").Click();
```
Expand Down