测试积点老人 发表于 2021-11-29 09:53:41

TypeError: __init__() got an unexpected keyword argument 'options' 这是什么情...

TypeError: __init__() got an unexpected keyword argument 'options' 这是什么情况,我该怎么该
import timefrom selenium import webdriver1.创建选项对象chrome_options = webdriver.ChromeOptions()2.添加参数,进行隐藏chrome_options.add_experimental_option('excludeSwitches', ['enable-automation'])3.谷歌浏览器对象
chrome_obj = webdriver.Chrome(options=chrome_options)

chrome_obj.get("https://www.baidu.com/")

time.sleep(3)

chrome_obj.quit()---------------------------------------------这是报错信息
Traceback (most recent call last):
File "E:/11期爬虫班/爬虫课程/第七周/19-selenium使用/19.1selenium反检测.py", line 10, in
chrome_obj = webdriver.Chrome(options=chrome_options)
TypeError: init() got an unexpected keyword argument 'options'

海海豚 发表于 2021-11-30 09:16:27

检查是否输入错误,属性名是否正确

qqq911 发表于 2021-11-30 10:22:06

webdriver.Chrome(options=chrome_options)这个地方写的有问题

jingzizx 发表于 2021-11-30 17:33:51

参数有问题
页: [1]
查看完整版本: TypeError: __init__() got an unexpected keyword argument 'options' 这是什么情...