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
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"
driver = webdriver.Chrome(chrome_options=option, executable_path="D:\\Google Chrome 32位 v39.0.2171.99\\App\\Google Chrome\\chromedriver")
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()
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
|