Skip to content

Commit d7a4969

Browse files
dquistyodurr
authored andcommitted
Add missing documentation regarding Developer Mode and fix typos
1 parent 09183d8 commit d7a4969

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ For answers to common questions and/or best practices in using WinAppDriver, ple
3232

3333
1. Download Windows Application Driver installer from <https://github.com/Microsoft/WinAppDriver/releases>
3434
2. Run the installer on a Windows 10 machine where your application under test is installed and will be tested
35-
3. Run `WinAppDriver.exe` from the installation directory (E.g. `C:\Program Files (x86)\Windows Application Driver`)
35+
3. Enable [Developer Mode](https://docs.microsoft.com/en-us/windows/uwp/get-started/enable-your-device-for-development) in Windows settings
36+
4. Run `WinAppDriver.exe` from the installation directory (E.g. `C:\Program Files (x86)\Windows Application Driver`)
3637

3738
Windows Application Driver will then be running on the test machine listening to requests on the default IP address and port (`127.0.0.1:4723`). You can then run any of our [Tests](/Tests/) or [Samples](/Samples). `WinAppDriver.exe` can be configured to listen to a different IP address and port as follows:
3839

Samples/C#/CalculatorTest/ScenarioStandard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class ScenarioStandard : CalculatorSession
3030
[TestMethod]
3131
public void Addition()
3232
{
33-
// Find the buttons by their names and click them in sequence to peform 1 + 7 = 8
33+
// Find the buttons by their names and click them in sequence to perform 1 + 7 = 8
3434
session.FindElementByName("One").Click();
3535
session.FindElementByName("Plus").Click();
3636
session.FindElementByName("Seven").Click();

Samples/Ruby/features/standard.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Feature: Standard calculator
66
Given I start the application
77
Then I see the result is "0"
88

9-
# Find the buttons by their names and click them in sequence to peform 1 + 7 = 8
9+
# Find the buttons by their names and click them in sequence to perform 1 + 7 = 8
1010
Scenario: Addition
1111
Given I start the application
1212
When I press "One"

0 commit comments

Comments
 (0)