首頁  >  文章  >  後端開發  >  為什麼我在使用舊版 Chrome 的 Selenium 中會收到「WebDriverException:未知錯誤」?

為什麼我在使用舊版 Chrome 的 Selenium 中會收到「WebDriverException:未知錯誤」?

Barbara Streisand
Barbara Streisand原創
2024-11-02 09:33:03882瀏覽

Why Am I Getting

WebDriverException:舊版Chrome 中的Selenium 出現未知錯誤

在舊版Google Chrome 中使用Selenium 時,用戶可能會遇到錯誤WebDriverException:未知錯誤:找不到Chrome 二進位檔案。

解決方案:

要解決此問題,請使用Options.binary_location 屬性。此屬性接受 Chrome 二進位執行檔的路徑。

<code class="python">from selenium import webdriver
from selenium.webdriver.chrome.options import Options

options = Options()
options.binary_location = "C:\Program Files\Chrome\chrome64_55.0.2883.75\chrome.exe"
driver = webdriver.Chrome('chromedriver.exe', chrome_options=options)</code>

透過提供 Chrome 二進位檔案的確切位置,ChromeDriver 可以準確定位並啟動 Chrome,解決「找不到 Chrome 二進位檔案」錯誤。

以上是為什麼我在使用舊版 Chrome 的 Selenium 中會收到「WebDriverException:未知錯誤」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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