DeprecationWarning:executable_path is Obsolete in Selenium Python
在 Selenium Python 中,executable_path 参数已被标记为已弃用,在以下情况下会提示警告消息尝试实例化一个 webdriver 实例。要解决此问题,请改用 Service 对象。
此弃用与 Selenium 4.0 Beta 1 的版本一致,其中规定除 Options 和 Service 之外的所有参数都将被弃用。
解决方案
要修复此错误并确保与 Selenium v4 的兼容性,请按照以下步骤操作步骤:
确保 Selenium 升级到 v4.0.0:
pip3 install -U selenium
安装适用于 Python 的 Webdriver Manager:
pip3 install webdriver-manager
使用以下更新的代码块(假设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 v4 的无缝 WebDriver 使用.
有关更多详细信息,请参阅 Selenium 4.0 变更日志、错误报告和拉取请求:
以上是如何修复'executable_path”的 Selenium Python DeprecationWarning?的详细内容。更多信息请关注PHP中文网其他相关文章!