I have recently upgraded my mac machine to OS Catalina(v 10.15.3). After this upgrade I am unable to launch the chrome driver using selenium.
I am facing the below error
(What worked for me, hopefully works for you too)
use homebrew to install chromedriver
brew install chromedriver
navigate to chromedriver that is in the Caskroom folder specifically
/usr/local/bin/Caskroom/chromedriver ... keep going until you see the Unix Executable File called "chromedriver"
following Apple's recommendation for opening Mac apps from unidentified developer, double-click chromedriver
, and then click "Open"
For me, this resulted in a terminal window popping up with the output:
Starting ChromeDriver ...
Only local connections are allowed.
Please see https://chromedriver.chromium.org/security-considerations for suggestions on keeping ChromeDriver safe.
ChromeDriver was started successfully.
I can now run scrapy-selenium
no problem, you can close the terminal window (yes, terminate the process is OK) and it should still work without stopping you now.
Let me know if this works for you