From 3f7c15b91ae4373ed180e69173d8ff9e8fe7dbd0 Mon Sep 17 00:00:00 2001 From: Shakeel Mahate Date: Wed, 24 Aug 2022 10:57:01 -0400 Subject: [PATCH] Fix typo Calculator was misspelled as Calaculator --- Docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/FAQ.md b/Docs/FAQ.md index 9b544384..db9ecc4d 100644 --- a/Docs/FAQ.md +++ b/Docs/FAQ.md @@ -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(); ```