WebDriverException:未知錯誤:無法在舊版Google Chrome 版本的Python 中使用Selenium 查找Chrome 二進位檔案
在舊版Google時Chrome,您可能會遇到以下錯誤:WebDriverException: unknown error: cannot find Chrome binary
OS | Default Chrome Location |
---|---|
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 |
<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 的 Selenium 中找到 Chrome 二進位?的詳細內容。更多資訊請關注PHP中文網其他相關文章!