I am encountering an error with the following configuration:
ERROR
registration capabilities Capabilities [{platform=WINDOWS, ensureCleanSession=true, browserName=internet explorer, version=}] does not match the current platform LINUX 18:17:05.892 INFO - Driver provider org.openqa.selenium.edge.EdgeDriver registration is skipped: registration capabilities Capabilities [{platform=WINDOWS, browserName=MicrosoftEdge, version=}] does not match the current platform LINUX 18:17:05.896 INFO - Driver class not found: com.opera.core.systems.OperaDriver 18:17:05.896 INFO - Driver provider com.opera.core.systems.OperaDriver is not registered 18:17:06.187 WARN - Failed to start: [email protected]:4444 Exception in thread "main" java.net.BindException: Selenium is already running on port 4444. Or some other service is. at org.openqa.selenium.server.SeleniumServer.start(SeleniumServer.java:492) at org.openqa.selenium.server.SeleniumServer.boot(SeleniumServer.java:305) at org.openqa.selenium.server.SeleniumServer.main(SeleniumServer.java:245) at org.openqa.grid.selenium.GridLauncher.main(GridLauncher.java:64) Selenium Standalone has exited with code 1 Selenium standalone server started at http://10.33.24.128:43448/wd/hub
Jenkins commands
## run testing node_modules/protractor/bin/webdriver-manager update --standalone node_modules/protractor/bin/webdriver-manager start > /dev/null 2>&1 & while ! curl http://localhost:4444/wd/hub/status &>/dev/null; do :; done node_modules/protractor/bin/protractor protractor.conf.js
My configuration file can be found below
exports.config = { directConnect: false, capabilities: { 'browserName': 'chrome' }, chromeDriver: './node_modules/protractor/selenium/chromedriver', seleniumAddress: 'http://localhost:4444/wd/hub', framework: 'jasmine', specs: ['tests/specs/*-spec.js'], jasmineNodeOpts: { showColors: true, defaultTimeoutInterval: 30000 } };