当前位置:   article > 正文

selenium 报错 DeprecationWarning: executable_path has been deprecated, please pass in a Service object

deprecationwarning: executable_path has been deprecated, please pass in a se

在这里插入图片描述

DeprecationWarning: executable_path has been deprecated, please pass in a Service object
  driver = webdriver.Chrome(executable_path='chromedriver.exe')
  • 1
  • 2

出现 DeprecationWarning 警告的类型错误:该类型的警告大多属于版本已经更新,所使用的方法过时。

查询当前版本重构后的函数,是之前的 executable_path 被重构到了 Service 函数里
在这里插入图片描述

尝试解决方法:

from selenium import webdriver
from selenium.webdriver.chrome.service import Service

# 尝试传参
s = Service("chromedriver.exe")
driver = webdriver.Chrome(service=s)


driver.get('https://www.baidu.com/')
driver.quit() 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/367821
推荐阅读
相关标签
  

闽ICP备14008679号