python_selenium简单的滑动验证码

Posted fierydragon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_selenium简单的滑动验证码相关的知识,希望对你有一定的参考价值。

一:背景图片

技术图片

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

二:代码如下

    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简单的滑动验证码的主要内容,如果未能解决你的问题,请参考以下文章

C# 滑动验证码|拼图验证|SlideCaptcha

python模拟网站登陆-滑动验证码

8.2 极验滑动验证码的识别

android滑动拼图验证码控件

腾讯防水墙(滑动验证码)的简单使用 https://007.qq.com

Python3网络爬虫实战-43极验滑动验证码的识别