首页 > 编程语言 > 详细

python_selenium简单的滑动验证码

时间:2019-06-26 19:12:17      阅读:193      评论:0      收藏:0      [点我收藏+]

一:背景图片

技术分享图片

主要是解决这类简单的验证码,思路很简单,这里直接分享一下代码吧,以后可以直接拿来用

二:代码如下

    driver.get(url=url)
    # 开始查找滑块
    button = driver.find_element_by_xpath(‘//div[@class="ui-slider-btn init ui-slider-no-select"]‘)
    action = ActionChains(driver)
    action.click_and_hold(button).perform()
    action.reset_actions()
    action.move_by_offset(333, 0).release().perform()
    action.click_and_hold()

三:参考大神博客连接如下

https://www.cnblogs.com/chengming104/p/8746046.html

python_selenium简单的滑动验证码

原文:https://www.cnblogs.com/fierydragon/p/11093216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!