Last active
April 6, 2020 08:06
-
-
Save diemol/e710a6711f9d93311ac6efad1319ba78 to your computer and use it in GitHub Desktop.
WebDriver Payload
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
capabilities: | |
{ | |
alwaysMatch: | |
{ | |
browserName: 'firefox', | |
platformName: 'macOS 10.13', | |
browserVersion: 'latest' | |
sauce:options: | |
{ | |
name: 'My test name', | |
build: 'My build' | |
} | |
}, | |
firstMatch: [ {} ] | |
}, | |
desiredCapabilities: | |
{ | |
browserName: 'firefox', | |
platformName: 'macOS 10.13', | |
browserVersion: 'latest', | |
name: 'My test name', | |
build: 'My build' | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
capabilities: | |
{ | |
alwaysMatch: | |
{ | |
browserName: 'firefox', | |
platformName: 'macOS 10.13', | |
browserVersion: 'latest' | |
}, | |
firstMatch: [ {} ] | |
}, | |
desiredCapabilities: | |
{ | |
browserName: 'firefox', | |
platform: 'macOS 10.13', | |
version: 'latest' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment