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 has been archived by the owner on Dec 18, 2019. It is now read-only.
The latest selenium-standalone server version is 3.141.59. So the second minor version is .59. That caused the issue when it was downloading Selenium server since the path is not correct:
A service failed in the 'onPrepare' hook
Error: Could not download https://selenium-release.storage.googleapis.com/3.1419/selenium-server-standalone-3.141.59.jar
at Request. (/Users/xcao/Desktop/qa-ui-functional/node_modules/selenium-standalone/lib/install.js:373:21)
at emitOne (events.js:116:13)
at Request.emit (events.js:211:7)
at Request.onRequestResponse (/Users/xcao/Desktop/qa-ui-functional/node_modules/request/request.js:1066:10)
at emitOne (events.js:116:13)
at ClientRequest.emit (events.js:211:7)
at HTTPParser.parserOnIncomingClient (_http_client.js:544:21)
at HTTPParser.parserOnHeadersComplete (_http_common.js:117:17)
at TLSSocket.socketOnData (_http_client.js:440:20)
at emitOne (events.js:116:13)
Does @wdio/selenium-standalone-service download selenium-standalone on it's own?
Or do we need to also have the selenium-standalone node module installed independently?
The latest selenium-standalone server version is 3.141.59. So the second minor version is .59. That caused the issue when it was downloading Selenium server since the path is not correct:
A service failed in the 'onPrepare' hook
Error: Could not download https://selenium-release.storage.googleapis.com/3.1419/selenium-server-standalone-3.141.59.jar
at Request. (/Users/xcao/Desktop/qa-ui-functional/node_modules/selenium-standalone/lib/install.js:373:21)
at emitOne (events.js:116:13)
at Request.emit (events.js:211:7)
at Request.onRequestResponse (/Users/xcao/Desktop/qa-ui-functional/node_modules/request/request.js:1066:10)
at emitOne (events.js:116:13)
at ClientRequest.emit (events.js:211:7)
at HTTPParser.parserOnIncomingClient (_http_client.js:544:21)
at HTTPParser.parserOnHeadersComplete (_http_common.js:117:17)
at TLSSocket.socketOnData (_http_client.js:440:20)
at emitOne (events.js:116:13)
Continue...
ERROR: connect ECONNREFUSED 127.0.0.1:4444
Notice the correct download file path is https://selenium-release.storage.googleapis.com/3.141/selenium-server-standalone-3.141.59.jar
in wdio.conf.js I have this seleniumArgs and installArgs:
exports.config = {
seleniumInstallArgs: { version: '3.141.0', drivers: { chrome: { version: '2.45' } } },
seleniumArgs: { version: '3.141.0', drivers: { chrome: { version: '2.45' } } },
...
}
The text was updated successfully, but these errors were encountered: