The configuration below is causing the server to start on a different port each time by protractor, rather than the specified port.
exports.config = {
allScriptsTimeout: 11000,
multiCapabilities: [ {
browserName: 'chrome',
shardTestFiles: true,
//seleniumAddress: 'http://localhost:4444/wd/hub',
seleniumServerJar: './node_modules/protractor/node_modules/webdriver-manager/selenium/selenium-server-standalone-3.4.0.jar',
seleniumPort: 4455,
seleniumArgs: ['-browserTimeout=60']
}
]
}
Output:
[11:06:47] I/local - Starting selenium standalone server...
[11:06:48] I/local - Selenium standalone server started at http://127.0.0.1:60315/wd/hub
Expected result is for the server to be launched on port 4455.