python調用selenium進行數據采集時,需要調用Google Chrome進行數據抓取,但是,調試的時候報錯了。
報錯”selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary“了,按這個意思,應該是無法調用Google Chrome瀏覽器的執行文件,解決辦法如下:
1、確認當前的Google Chrome版本號與chromedriver版本號一致,如果不一致,到http://chromedriver.storage.googleapis.com/index.html下載與當前chrome瀏覽 器對應的驅動。
http://selenium-release.storage.googleapis.com/index.html selenium下載地址;
2、將chromedriver.exe文件放入python的scripts目錄,并將該scripts目錄添加到系統path變量中;
3、找到Google Chrome安裝目錄,一般在C:\Users\Administrator\AppData\Local\Google\Chrome\Application\Google Chrome.exe,將Google Chrome.exe復制一個出來,并重命名為chrome.exe,并將目錄C:\Users\Administrator\AppData\Local\Google\Chrome\Application\添加到系統path變量中
以上三步,基本能解決問題,網上一些帖子說在py腳本文件中加入options.binary_location=r'C:\\Users\\Administrator\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe' 指定絕對路徑,這樣挺麻煩的,治標不治本,后期你每個py腳本都要指定路徑。
注:selenium調用chrome時,是調用chrome.exe,而不是默認的Google Chrome.exe