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

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

Susan Sarandon
發布: 2024-12-12 13:41:10
原創
341 人瀏覽過

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板