I'm a bit of a novice to all of this, but I had written a simple web scraper in Python a few months ago that interfaced to Chrome using Selenium and chromedriver (it used to work with v90). I'd run this script every couple of weeks or so to get new data, but when I went to run it today it wouldn't work. I got a message that said "chrome not reachable". I can see where the chromedriver window launches (it says, "this window being controlled by automated software"), but my script cannot communicate with that window. It will eventually timeout and throw the "chrome not reachable" error.
I thought that this might have to do with the latest chrome updates, so I updated my chromedriver version, but the issue persists. Has anyone seen this recently and do you know a workaround?
I'm using:
- Python v3.9.4
- Selenium v3.141.0
And I've tried:
- ChromeDriver v92.0.4515.43
- ChromeDriver v91.0.4472.101
- ChromeDriver v90.0.4430.24
Thanks for any insight!