首页 >后端开发 >Python教程 >如何修复'executable_path”的 Selenium Python DeprecationWarning?

如何修复'executable_path”的 Selenium Python DeprecationWarning?

Patricia Arquette
Patricia Arquette原创
2024-12-05 22:25:12519浏览

How to Fix the Selenium Python DeprecationWarning for `executable_path`?

DeprecationWarning:executable_path is Obsolete in Selenium Python

在 Selenium Python 中,executable_path 参数已被标记为已弃用,在以下情况下会提示警告消息尝试实例化一个 webdriver 实例。要解决此问题,请改用 Service 对象。

此弃用与 Selenium 4.0 Beta 1 的版本一致,其中规定除 Options 和 Service 之外的所有参数都将被弃用。

解决方案

要修复此错误并确保与 Selenium v​​4 的兼容性,请按照以下步骤操作步骤:

  1. 确保 Selenium 升级到 v4.0.0:

    pip3 install -U selenium
  2. 安装适用于 Python 的 Webdriver Manager:

    pip3 install webdriver-manager
  3. 使用以下更新的代码块(假设Chrome):

    from selenium import webdriver
    from selenium.webdriver.chrome.service import Service
    from webdriver_manager.chrome import ChromeDriverManager
    
    driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))
    driver.get("https://www.google.com")

如果您希望传递选项参数:

    from selenium.webdriver.chrome.options import Options

    options = Options()
    options.add_argument("start-maximized")

    driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
    driver.get("https://www.google.com")

此解决方法应该消除弃用警告并提供与 Selenium v​​4 的无缝 WebDriver 使用.

有关更多详细信息,请参阅 Selenium 4.0 变更日志、错误报告和拉取请求:

  • [弃用驱动程序实例化中除选项和服务参数之外的所有内容](https://github.com/SeleniumHQ/selenium/pull/9125)
  • [弃用除此之外的所有内容驱动程序中的选项和服务参数实例化](https://github.com/SeleniumHQ/selenium/issues/9125)

以上是如何修复'executable_path”的 Selenium Python DeprecationWarning?的详细内容。更多信息请关注PHP中文网其他相关文章!

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