selenium 中的 webdriver.Chrome()报错

`

# 下列设置让浏览器不弹出,不影响正常电脑使用

chrome_options = webdriver.ChromeOptions()

chrome_options.add_argument('--headless')

chrome_options.add_argument('--disable-gpu')

# print(chrome_options)

driver = webdriver.Chrome(chrome_options)

`
传入参数chrome_options一直报错
TypeError: argument of type 'Options' is not iterable

arg类型为
<class 'selenium.webdriver.chrome.options.Options'>

selenium 中的 webdriver.Chrome()报错

chrome版本为 60.0.3112.113 (正式版本) (32 位)
chromedriver 版本为 2.33


回答:

driver = webdriver.Chrome(chrome_options=chrome_options)

参考

class selenium.webdriver.chrome.webdriver.WebDriver(executable_path='chromedriver', port=0, options=None, service_args=None, desired_capabilities=None, service_log_path=None, chrome_options=None, keep_alive=True)

以上是 selenium 中的 webdriver.Chrome()报错 的全部内容, 来源链接: utcz.com/a/159256.html

回到顶部