Trying to get selenium
to work with Python 3 for web scraping purposes:
from selenium import webdriver
chrome_path = r"/Library/Frameworks/Python.framework/Versions/3.6/bin/chromedriver"
driver = webdriver.Chrome(chrome_path)
I get the following error message:
selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary
A similar question was addressed here, but what is baffling to me is that Chrome is already installed on my system. The other asker apparently didn't have it on their computer. I'm running latest version of Mac OS.