首页  >  文章  >  后端开发  >  在 Python 中使用 Selenium Chromedriver 设置用户代理时,为什么我会收到“WebDriverException: \'chromedriver\' Needs to Be in Path\”?

在 Python 中使用 Selenium Chromedriver 设置用户代理时,为什么我会收到“WebDriverException: \'chromedriver\' Needs to Be in Path\”?

Susan Sarandon
Susan Sarandon原创
2024-11-15 05:03:02134浏览

Why Am I Getting

WebDriverException: 通过 Selenium Chromedriver Python 设置 UserAgent 时,'chromedriver' 需要位于路径中

尝试修改用户代理时对于使用 Selenium Chromedriver 和 Python 进行网页抓取,您可能会遇到此错误消息:

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

问题:

此错误表明在您的环境中的 PATH 变量中指定的位置未找到 ChromeDriver 可执行文件变量。

解决方案:

要解决此问题,请将“executable_path”键与 ChromeDriver 的绝对路径以及 ChromeOptions 对象一起作为初始化 WebDriver 和 WebBrowser 时的参数:

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('user-agent = Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36')
driver = webdriver.Chrome(chrome_options=options, executable_path=r'C:\Users\Desktop\chromedriver_win32\chromedriver.exe')
driver.get('https://www.google.co.in')

确保替换路径与系统上 ChromeDriver 可执行文件的实际位置。这将找到 ChromeDriver 并使用所需的用户代理初始化浏览器,从而解决错误消息。

以上是在 Python 中使用 Selenium Chromedriver 设置用户代理时,为什么我会收到“WebDriverException: \'chromedriver\' Needs to Be in Path\”?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn