首頁 >後端開發 >Python教學 >如何解決舊版 Google Chrome 的 Selenium Python 中的「無法找到 Chrome 二進位」錯誤?

如何解決舊版 Google Chrome 的 Selenium Python 中的「無法找到 Chrome 二進位」錯誤?

Linda Hamilton
Linda Hamilton原創
2024-10-30 09:25:27777瀏覽

How to Solve the

在舊版Google Chrome 中無法使用Selenium Python 查找Chrome 二進位錯誤

在舊版Google Chrome 中使用您可能會遇到以下錯誤:

WebDriverException: unknown error: cannot find Chrome binary

此錯誤表示ChromeDriver 無法在其預設位置找到Chrome 二進位。

要解決此問題,您可以明確設定 Chrome 二進位檔案位置使用 WebDriver 選項中的 binary_location 選項。例如:

<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 版本的正確 Chrome 二進位位置。

或者,您可以安裝與您的 ChromeDriver 版本相容的相應 ChromeDriver 版本。 Chrome 版本。 ChromeDriver 要求文件提供了不同作業系統的預期Chrome 二進位檔案位置:

OS Expected Location of Chrome
Linux /usr/bin/google-chrome1
Mac /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
Windows XP %HOMEPATH%Local SettingsApplication DataGoogleChromeApplicationchrome.exe
Windows Vista and newer C:Users%USERNAME%AppDataLocalGoogleChromeApplicationchrome.exe

透過執行下列步驟,您可以防止「找不到Chrome 二進位檔案」錯誤,並確保使用舊版WebDriver 腳本成功執行Chrome 版本。

以上是如何解決舊版 Google Chrome 的 Selenium Python 中的「無法找到 Chrome 二進位」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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