We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在Selenium的最新版本中,webdriver.Chrome()构造函数不再接受chrome_options参数,而是改为使用options参数。
需要修改以下代码行: browser = webdriver.Chrome(chrome_options=chrome_options)
改为: browser = webdriver.Chrome(options=chrome_options)
The text was updated successfully, but these errors were encountered:
大佬,这个包还能用? 我目前只部署了基于mitmproxy的helper,但是这个wrapper不太会弄
Sorry, something went wrong.
谁装谁知道,隔壁wrapper使用mitmproxy9.0没事,这边必须要5.0.0-5.1.0,我看了整个问题区,全是依赖问题,我真是整心累了
No branches or pull requests
在Selenium的最新版本中,webdriver.Chrome()构造函数不再接受chrome_options参数,而是改为使用options参数。
需要修改以下代码行:
browser = webdriver.Chrome(chrome_options=chrome_options)
改为:
browser = webdriver.Chrome(options=chrome_options)
The text was updated successfully, but these errors were encountered: