Closed benjaminpjones closed 2 months ago
I believe I had a similar issue at some point. My solution was to go into the folder where the webdrivers were installed and delete all the existing webdriver versions. On my system I found them here: C:\Users\<name>\.wdm\drivers\chromedriver\win64
This would make it so that ChromeDriverManager().install()
will install a driver based on your current version of chrome and not use a conflicting driver in that folder which is likely causing the error. Also, if your Chrome settings allow for auto-update keeping this line ChromeDriverManager().install()
will install a driver based on the new version automatically.
Glad you found a fix though!
Ah makes sense - I'm not very familiar with how these drivers are set up. Could be that the installer has trouble detecting Chromium.
Will go ahead and close if this is not an issue on other systems
I have Chromium version 127.0.6533.99, but I get an error when trying to run the script:
This version of ChromeDriver only supports Chrome version 114
. I was able to resolve it by removing theChromeDriverManager().install()
fromweb_board.py
.