我是靠谱客的博主 故意草莓,最近开发中收集的这篇文章主要介绍selenium 报错 DeprecationWarning executable_path has been deprecated, please pass in a Service object,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
DeprecationWarning: executable_path has been deprecated, please pass in a Service object
driver = webdriver.Chrome(executable_path='chromedriver.exe')
出现 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()
最后
以上就是故意草莓为你收集整理的selenium 报错 DeprecationWarning executable_path has been deprecated, please pass in a Service object的全部内容,希望文章能够帮你解决selenium 报错 DeprecationWarning executable_path has been deprecated, please pass in a Service object所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复