首頁 >後端開發 >Python教學 >為什麼我的 Python Selenium 腳本失敗並顯示「chromedriver'可執行檔需要位於 PATH 中」?

為什麼我的 Python Selenium 腳本失敗並顯示「chromedriver'可執行檔需要位於 PATH 中」?

Susan Sarandon
Susan Sarandon原創
2024-12-12 13:41:10343瀏覽

Why Does My Python Selenium Script Fail with

使用Headless Chrome 解決'chromedriver' Executable Not Found in PATH 錯誤

由於'driver' 可執行文件,Python 腳本在使用Selenium 時經常執行Headless chrome 時會執行Headless chrome遇到錯誤無法在PATH 中辨識。

為了分析問題,我們檢查錯誤log:

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

該錯誤表明 Python 客戶端無法找到 chromedriver 二進位。要解決這個問題,我們需要解決以下幾點:

  • chrome_options.binary_location:此參數指向 chrome.exe,而不是 chromedriver.exe。
  • os.path.abspath("chromedriver"):這會擷取的路徑chromedriver,但不附加 chromedriver.exe。

以下是修改後的程式碼範例,可在無頭模式下有效啟動 Google Chrome:

from selenium import webdriver  
from selenium.webdriver.chrome.options import Options 

chrome_options = Options()  
chrome_options.add_argument("--headless")  
driver = webdriver.Chrome(chrome_options=chrome_options, executable_path=r'C:\Utility\BrowserDrivers\chromedriver.exe')  
driver.get("http://www.duo.com") 
print("Chrome Browser Initialized in Headless Mode")
driver.quit()
print("Driver Exited")

以上是為什麼我的 Python Selenium 腳本失敗並顯示「chromedriver'可執行檔需要位於 PATH 中」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn