New chromedriver download
asaf400 opened this issue · 6 comments
https://chromedriver.chromium.org/downloads/version-selection#h.4wiyvw42q63v
The chromium decided to change the way they publish new versions of the chrome driver starting at version 115, so this breaks the automated chromedriver download & setup.
I was able to overcome this by not giving any path to:
service = Service(local_bin_directory + '/chromedriver/chromedriver')
Like so:
service = Service()
I think selenium takes care of the driver now "automagically" ?
I was able to overcome this by not giving any path to:
service = Service(local_bin_directory + '/chromedriver/chromedriver')
Like so:
service = Service()
I think selenium takes care of the driver now "automagically" ?
not working in my case
You can try and make sure to download the latest chromedirver and chrome,
the location of the downloads have changed:
https://googlechromelabs.github.io/chrome-for-testing/#stable
Upgrading selenium to 112 works for me
Thanks for opening this issue. I have started looking into it.
Soon a fix for code will be added.
Updated.