You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
exports.config = {
// The address of a running selenium server.
//seleniumAddress: 'http://localhost:4444/wd/hub',
seleniumServerJar: './selenium/selenium-server-standalone-2.35.0.jar',
chromeDriver: './selenium/chromedriver',
// Capabilities to be passed to the webdriver instance.
capabilities: {
'browserName': 'chrome'
},
I get an error:
/home/tarjei/htdocs/frisvold/selenium-tests/node_modules/protractor/lib/cli.js:115
config.seleniumArgs.push(
^
TypeError: Cannot call method 'push' of undefined
Adding seleniumArgs solves this. Wouldn't it be better to just default seleniumArgs to []?
The text was updated successfully, but these errors were encountered:
If I try to run with a config like this:
I get an error:
/home/tarjei/htdocs/frisvold/selenium-tests/node_modules/protractor/lib/cli.js:115
config.seleniumArgs.push(
^
TypeError: Cannot call method 'push' of undefined
Adding seleniumArgs solves this. Wouldn't it be better to just default seleniumArgs to []?
The text was updated successfully, but these errors were encountered: