Selenium gives “selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary” on Mac

前端 未结 6 2046
星月不相逢
星月不相逢 2020-12-06 04:29

Trying to get selenium to work with Python 3 for web scraping purposes:

from selenium import webdriver
chrome_path = r\"/Library/Frameworks/Pyth         


        
6条回答
  •  無奈伤痛
    2020-12-06 05:32

    If your chromedriver is located within /Library/Frameworks/Python.framework/Versions/3.6/bin/ directory the following code block should be working for you:

    from selenium import webdriver
    
    chrome_path = r'/Library/Frameworks/Python.framework/Versions/3.6/bin/chromedriver'
    driver = webdriver.Chrome(executable_path=chrome_path)
    driver.get('https://www.google.co.in')
    

提交回复
热议问题