__init__() got an unexpected keyword argument ‘options‘

我们在学习爬虫中如果出现这个错误:

Traceback (most recent call last):
File “E:/pythonwork/第三阶段/day06/1.selenium结合Chrome浏览器.py”, line 18, in
driver = webdriver.Chrome(executable_path=r’E:\软\chromedriver_win32\chromedriver.exe’, options=options)
TypeError: init() got an unexpected keyword argument ‘options’

解决的方案就是:pip install selenium --upgrade (可能是版本不正确,需要更新一下版本。)

你可能感兴趣的:(个人,chrome,selenium,python)