Closed khirakawa closed 7 years ago
In wdio.conf.js:
wdio.conf.js
{ sauceConnectOpts: { port: 4446, } }
Will cause the tests to fail with ERROR: Couldn't connect to selenium server. This is because wdio-sauce-service hardcodes the port to be 4445.
ERROR: Couldn't connect to selenium server
wdio-sauce-service
port
This PR fixes the issue by honoring the port specified in sauceConnectOpts.
sauceConnectOpts
@christian-bromann
Thanks 👍
released as v0.3.0
v0.3.0
In
wdio.conf.js
:Will cause the tests to fail with
ERROR: Couldn't connect to selenium server
. This is becausewdio-sauce-service
hardcodes theport
to be 4445.This PR fixes the issue by honoring the
port
specified insauceConnectOpts
.@christian-bromann