Trying to get selenium to work with Python 3 for web scraping purposes:
from selenium import webdriver
chrome_path = r\"/Library/Frameworks/Pyth
If anyone is getting the same error on a linux machine, then you are missing google chrome installation as one of the steps needed for chrome driver to work.
Follow this link to install Google chrome on Linux.
Now, check code
driver = webdriver.Chrome(executable_path='/usr/bin/chromedriver', options=chrome_options, service_args=['--verbose', '--log-path=/tmp/chromedriver.log'])
For me it worked.