本文仅供学习交流使用,如侵立删!
win10 、 mac
Python3.9
selenium、pyautogui
最近在做中国庭审公开网数据分析的时候发现每次打开一个新的页面都会触发滑块验证,就长下面这个样子 本以为使用selenium定位到滑块元素拖动即可,满心欢喜开始写代码,测试后发现还是高兴太早了~~~
貌似有点东西,原以为是因为检测到了selenium的原因,添加防检测代码
chrome_options.add_experimental_option(‘excludeSwitches’, [‘enable-automation’])
chrome_options.add_argument(’–disable-blink-features=AutomationControlled’)
后陆续尝试过,降低chrome版本,修改chromedriver驱动文件,均不成功。 现在看来是真的有点东西!!!正在一筹莫展时,直到看到了这个 经过分析网页源码发现原来是使用了阿里云盾的人机效验,详细介绍请参考官方产品文档:阿里云验证码产品文档 分析了一波效验规则及原理,搞明白原理就好办了
1.使用selenium请求url,并触发滑块验证
2.使用pyautogui操控鼠标滑动
def init(self):
chrome_options = Options()
chrome_options.add_experimental_option(‘excludeSwitches’, [‘enable-automation’])
chrome_options.add_argument(’–disable-blink-features=AutomationControlled’)
self.driver = webdriver.Chrome(’./config/chromedriver.exe’, options=chrome_options)
self.wait = WebDriverWait(self.driver, 10, 1) # 设置隐式等待时间
self.driver.maximize_window()
def run(self):
""“程序入口”""
print(f’打开首页:http://tingshen.court.gov.cn/preview’)
self.driver.get(‘http://tingshen.court.gov.cn/preview’)
js = 'window.open(“http://tingshen.court.gov.cn/live/28621597”);'
self.driver.execute_script(js)
pyautogui.dragTo(1086, 340, duration=1)
pyautogui.dragRel(260, 0, duration=0.5) # 第一个参数是左右移动像素值,第二个是上下
完美解决