Trying to get selenium to work with Python 3 for web scraping purposes:
selenium
from selenium import webdriver chrome_path = r\"/Library/Frameworks/Pyth
options = webdriver.ChromeOptions() options.binary_location = r"\chrome.exe" chrome_driver_path = r"\chromedriver.exe>" browser = webdriver.Chrome(chrome_driver_path, chrome_options=options)