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