Created
October 25, 2016 03:09
-
-
Save kyleian/17975ee07b5f0912c57223f01ad0f2c2 to your computer and use it in GitHub Desktop.
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
// - - - - SELENIUM-STANDALONE | |
seleniumStandaloneOptions: { | |
// check for more recent versions of selenium here: | |
// http://selenium-release.storage.googleapis.com/index.html | |
version: '2.53.1', | |
baseURL: 'https://selenium-release.storage.googleapis.com', | |
drivers: { | |
chrome: { | |
// check for more recent versions of chrome driver here: | |
// http://chromedriver.storage.googleapis.com/index.html | |
version: '2.24', | |
arch: process.arch, | |
baseURL: 'https://chromedriver.storage.googleapis.com' | |
}, | |
ie: { | |
// check for more recent versions of internet explorer driver here: | |
// http://selenium-release.storage.googleapis.com/index.html | |
version: '2.50.0', | |
arch: 'ia32', | |
baseURL: 'https://selenium-release.storage.googleapis.com' | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment