为什么我无法在旧版 Chrome 的 Selenium 中找到 Chrome 二进制文件?

Linda Hamilton
发布: 2024-10-29 11:54:03
原创
198 人浏览过

Why Can't I Find Chrome Binary in Selenium with Older Chrome Versions?

WebDriverException:未知错误:无法在旧版 Google Chrome 版本的 Python 中使用 Selenium 查找 Chrome 二进制文件

在旧版 Google 中使用 Selenium 时Chrome,您可能会遇到以下错误:

WebDriverException: unknown error: cannot find Chrome binary
登录后复制

此错误表明 ChromeDriver 无法在其默认位置找到 Chrome 二进制文件。

要解决此问题:

  1. 验证 Chrome 安装:
    确保您已按照 ChromeDriver 要求指定的默认位置安装了 Google Chrome 版本 55.0.2883.75:
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
  1. 设置二进制位置:
    如果 Chrome 安装在非默认位置,则需要在 Selenium 脚本中指定二进制位置:
<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>
登录后复制
  1. 检查 ChromeDriver 版本:
    使用的 ChromeDriver 版本应与 Chrome 版本兼容。在这种情况下,Chromedriver 2.26 适用于 Chrome 55.0.2883.75。
  2. 检查环境变量:
    确保 PATH 环境变量包含 ChromeDriver 所在的目录。这确保 Selenium 可以找到 Chromedriver 可执行文件。

通过执行这些步骤,您应该能够解决“找不到 Chrome 二进制文件”错误并使用指定的 Chrome 版本成功启动 WebDriver 实例。

以上是为什么我无法在旧版 Chrome 的 Selenium 中找到 Chrome 二进制文件?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!