Skip to content

Commit

Permalink
documented new settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Lielacher committed Oct 14, 2022
1 parent ce016a0 commit 7f7106e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Plugins/SpecFlow.Actions.WindowsAppDriver/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ Example:
"app": "../SpecFlowCalculator/bin/Debug/net5.0-windows/SpecFlowCalculator.exe"
},
"WindowsAppDriverPath": "C:/Program Files/Windows Application Driver/WinAppDriver.exe",
"EnableScreenshots": true
"WindowsAppDriverPort": 4723,
"EnableScreenshots": true,
"CloseAppAutomatically": false
}
}
```
Expand All @@ -50,6 +52,10 @@ Example:
\TestResults\Screenshots\2021-10-11_171822\Calculator\Add two numbers\the first number is 50 (OK).png
```

4. ```WindowsAppDriverPort``` - If specified, the Windows App Driver will be launched using this port. If not specified, the default port 4723 will be used. (This setting is useful, if the default port is already in use by another application.)

5. ```CloseAppAutomatically``` - This setting is optional and defaults to `true`. If `false`, the app will not be closed automatically after each scenario.

### Important information

If you do not provide these configuration values, then the next default fallback is to check for the following environment variables:
Expand Down

0 comments on commit 7f7106e

Please sign in to comment.