@@ -30,18 +30,20 @@ exports.config = {
30
30
// Server is found, this will default to
31
31
// node_modules/protractor/selenium/selenium-server...
32
32
seleniumServerJar : null ,
33
- // The port to start the Selenium Server on, or null if the server should
34
- // find its own unused port. Ignored if seleniumServerJar is null.
35
- seleniumPort : null ,
36
- // Additional command line options to pass to selenium. For example,
37
- // if you need to change the browser timeout, use
38
- // seleniumArgs: ['-browserTimeout=60']
39
- // Ignored if seleniumServerJar is null.
40
- seleniumArgs : [ ] ,
41
33
// Can be an object which will be passed to the SeleniumServer class as args.
34
+ // See a full list of options at
35
+ // https://github.com/SeleniumHQ/selenium/blob/master/javascript/node/selenium-webdriver/remote/index.js
42
36
// If you specify `args` or `port` in this object, it will overwrite the values
43
- // set via `seleniumPort` and `seleniumArgs`.
44
- localSeleniumStandaloneOpts : null ,
37
+ // set via the deprecated config values `seleniumPort` and `seleniumArgs`.
38
+ localSeleniumStandaloneOpts : {
39
+ // The port to start the Selenium Server on, or null if the server should
40
+ // find its own unused port.
41
+ port : null ,
42
+ // Additional command line options to pass to selenium. For example,
43
+ // if you need to change the browser timeout, use
44
+ // seleniumArgs: ['-browserTimeout=60']
45
+ args : [ ]
46
+ } ,
45
47
// ChromeDriver location is used to help find the chromedriver binary.
46
48
// This will be passed to the Selenium jar as the system property
47
49
// webdriver.chrome.driver. If null, Selenium will
0 commit comments