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检测,检测到driver模拟登陆即使你手动划也不能通过, 解决方法是修改window.navigator.webdrive 修改代码为 ''' option = webdriver.ChromeOptions() option.add_experimental_option("prefs", {"profile.managed_default_content_settings.images": 2}) option.add_experimental_option('excludeSwitches', ['enable-automation']) chromedriver = r"driver/chromedriver.exe" driver = webdriver.Chrome(chromedriver,options=option) '''
The text was updated successfully, but these errors were encountered:
感谢!
Sorry, something went wrong.
No branches or pull requests
主要是大麦会对selenium检测,检测到driver模拟登陆即使你手动划也不能通过,
解决方法是修改window.navigator.webdrive
修改代码为
'''
option = webdriver.ChromeOptions()
option.add_experimental_option("prefs", {"profile.managed_default_content_settings.images": 2})
option.add_experimental_option('excludeSwitches', ['enable-automation'])
chromedriver = r"driver/chromedriver.exe"
driver = webdriver.Chrome(chromedriver,options=option)
'''
The text was updated successfully, but these errors were encountered: