damaiTi9 icon indicating copy to clipboard operation
damaiTi9 copied to clipboard

关于登陆滑动条验证问题

Open LLLLLin opened this issue 6 years ago • 1 comments

主要是大麦会对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) '''

LLLLLin avatar May 23 '19 14:05 LLLLLin

感谢!

TinaryTree avatar May 23 '19 15:05 TinaryTree