python+selenium-12306实战解决登录滑块问题

Posted 散人干不死!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium-12306实战解决登录滑块问题相关的知识,希望对你有一定的参考价值。

写在前面

尝试自动化测试或初级爬虫(登录模块)以及滑块验证可参考本篇文章。
使用网站:chrome(39版)

遇到的问题

滑块验证:账号密码输入后会让进行滑块验证,即使拖动成功也会让刷新再试一次,即使再拖动仍旧如此,问题其实出在chromedriver,网站会检测到是自动测试工具从而阻止你的登录。

解决办法

使用低版本的chrome以及对应的chromedriver,具体版本对应csdn上有可以搜到(文末也有注释以及chromedriver各版本下载地址),至此可解决12306的滑块问题,但有一个问题该版本不支持购买服务,只能作为练习了。
对于其他网站,如:某淘,本人在去年想攻克未遂,今年又遇到相同的问题找到一篇解决方法,适用性很高,大家可以尝试下,注意使用低版本的chrome以及chromedriver(39可以),才能find 到$cdc_lasutopfhvcZLmcfl,文章链接

我使用的chrome是39版本,下载地址:http://www.121down.com/soft/softview-103980.html#downaddress
① 记得设置禁止自动更新:https://blog.csdn.net/weixin_41990913/article/details/90912790
②还有环境变量配置,由于老版本chrome不一定装在C盘,要根据具体位置加到用户变量PATH中,chromedriver.exe跟chrome.exe放在同一个文件夹中。

12306登录过程

注释比较详细,不再做过多说明

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from time import sleep
#-------------------------------------初始化--------------------------------------------
#仅用chrome39版本可躲过selenium检测
option = webdriver.ChromeOptions()
#开发者模式的开关,设置一下,打开浏览器就不会识别为自动化测试工具
option.add_experimental_option('excludeSwitches', ['enable-automation'])
option.binary_location = "D:\\\\Google Chrome 32位 v39.0.2171.99\\\\App\\\\Google Chrome\\\\chrome.exe" #自己目录chrome位置
driver = webdriver.Chrome(chrome_options=option, executable_path="D:\\\\Google Chrome 32位 v39.0.2171.99\\\\App\\\\Google Chrome\\\\chromedriver")#自己目录chromedriver位置

#------------------------------------打开12306网页-------------------------------------------
driver.maximize_window()
driver.implicitly_wait(10)
url = 'https://kyfw.12306.cn/otn/leftTicket/init'
driver.get(url)

#-------------------------------------登录---------------------------------------------
ActionChains(driver).move_by_offset(1000, 560).click().perform() # 点掉提示,鼠标左键点击, 1000为x坐标, 500为y坐标,可用微信截图工具得出坐标
driver.find_element_by_id("login_user").click()
driver.find_element_by_xpath("//ul[@class='login-hd']/li[2]/a").click() #注意相对路径也要每层都写,层层递进
driver.find_element_by_id('J-userName').send_keys("")
driver.find_element_by_id('J-password').send_keys("")#补充自己的账号密码
driver.find_element_by_xpath("//div[@class='login-btn']/a").click()#登录
sleep(2)

#-----------------------------------滑块验证--------------------------------------------
#拖动滑块
dragger = driver.find_element_by_id("nc_1_n1z")
action = ActionChains(driver)
action.click_and_hold(dragger).perform()# 点击并拖住滑块
action.drag_and_drop_by_offset(dragger,300,0).perform() #拖动等长距离滑块,开发者模式可看到 
sleep(2)
driver.find_element_by_xpath("//div[@class='modal-ft']/a").click()# 点掉提示

如何使用开发者模式

  • 首先按F12
  • 如何快速找到按钮对应的html代码位置:点击开发工具左上角,如图所示
  • 再点击你想要找的按钮,比如登录,右侧开发工具会自动显示对应的html代码

参考

某宝: https://blog.csdn.net/taojian_/article/details/97758632?spm=1001.2014.3001.5501
版本对应: https://blog.csdn.net/Yunwubanjian/article/details/86539432
chromedriver: http://chromedriver.storage.googleapis.com/index.html
12306实战: http://www.uml.org.cn/Test/201808024.asp

以上是关于python+selenium-12306实战解决登录滑块问题的主要内容,如果未能解决你的问题,请参考以下文章

python网络爬虫实战-Scrapy,深入理解scrapy框架,解决数据抓取过程

谈谈Python实战数据可视化之pyplot模块

Selenium2+Python3.6实战:定位下拉菜单出错,如何解决?用select或xpath定位。

(长期更新)python数据建模实战零零散散问题及解决方案梳理

python实战flask简易登陆注册

《Nuitka打包实战指南》实战打包OpenCV-Python