python+selenium+chrome 做滑动验证码 会被浏览器检测到使用的自动软件导致滑动验证失败
解决方法:代码中添加:
import time
from selenium import webdriver
from selenium.webdriver import ActionChains
options = webdriver.ChromeOptions()
options.add_argument('--disable-blink-features=AutomationControlled')
brow = webdriver