您现在的位置是:首页 > 伤感句子

TypeError: WebDriver.__init__() got multiple values for argument ‘options‘

作者:言安琪时间:2024-03-24 11:23:34分类:伤感句子

简介  文章浏览阅读3.2k次,点赞3次,收藏4次。selenium调用chromedriver报错,之前是可以用的,今天升级了一下selenium=4.11,搜了一下原来是selenium4.10开始不支持executeable_path参数了,需要使用servic

点击全文阅读

selenium调用chromedriver报错,之前是可以用的,今天升级了一下selenium=4.11,搜了一下原来是selenium4.10开始不支持executeable_path参数了,需要使用service参数代替

相关代码需要修改为:

from selenium.webdriver.chrome.service import Servicechromedriver_path = "{}\chromedriver.exe".format(os.path.dirname(os.path.abspath(__file__)))  #指定chromedriver路径chrome_options = webdriver.ChromeOptions()driver=webdriver.Chrome(service=Service(chromedriver_path), options=chrome_options)

点击全文阅读

郑重声明:

本站所有活动均为互联网所得,如有侵权请联系本站删除处理

我来说两句