webdriverio-boneyard / wdio-selenium-standalone-service

WebdriverIO v4 service to start & stop Selenium Standalone http://webdriver.io
MIT License
54 stars 28 forks source link

ChromeDriver fails to load on v0.0.10 #42

Open bzang opened 6 years ago

bzang commented 6 years ago

With the 0.0.10 update, chromeDriver no longer seems to load correctly, returning the following error:

 The driver executable does not exist: `/PATH/TO/PROJECT/node_modules/selenium-standalone/.selenium/chromedriver/2.33-x64-chromedriver

It seems to be defaulting to chromeDriver version 2.33 even though the default settings specify 2.36. I'm running selenium 3.6.0, wdio 4.12.0.

sidsalunke commented 6 years ago

I was facing the same issue. Thanks to @WillBrock I was able to resolve this.

There might be a process which is running the 2.33 version of chromedriver. Kill that process and everything should work like normal.

// To list all commands
ps
// To kill the chromedriver process
kill -9 [PID]