Python 官方文档:入门教程 => 点击学习
本篇内容介绍了“怎么用python行为链登录12306”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!使用Python网络爬虫登录12306,
本篇内容介绍了“怎么用python行为链登录12306”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
使用Python网络爬虫登录12306,网站界面如下。因为网站的反爬是不断升级的,以下代码虽然当前可用,但早晚必将会不再能满足登录需求。但是知识的价值,是不容置疑的。
from selenium import WEBdriverfrom selenium.webdriver.common.action_chains import ActionChainsimport timefrom selenium.webdriver import ChromeOptions# 去除浏览器识别option = ChromeOptions()option.add_experimental_option('excludeSwitches', ['enable-automation'])option.add_experimental_option("detach", True)driver = webdriver.Chrome(options=option)driver.get('https://kyfw.12306.cn/otn/resources/login.html')# 解决特征识别script = 'Object.defineProperty(navigator, "webdriver", {get: () => false,});'driver.execute_script(script)# 输入账号driver.find_element_by_id('J-userName').send_keys('123@163.com')# 输入密码driver.find_element_by_id('J-passWord').send_keys('xxxxxxx')# 点击登陆driver.find_element_by_id('J-login').click()# 等待2秒钟,不要点的太快,以免被识别或者以免网页加载跟不上。time.sleep(2)# 滑动# 定位 滑块标签span = driver.find_element_by_id('nc_1_n1z')actions = ActionChains(driver) # 行为链实例化time.sleep(2) # 等待2秒钟# 经截图测量,滑块需要滑过的距离为300像素actions.click_and_hold(span).move_by_offset(300, 0).perfORM() # 滑动
解决浏览器识别:
其中的以下这几行代码,可用去除浏览器对selenium
的识别,如图可以使浏览器页面不再显示图中“Chrome
正受到自动测试软件的控制”字样。
from selenium.webdriver import ChromeOptionsoption = ChromeOptions()option.add_experimental_option('excludeSwitches', ['enable-automation'])option.add_experimental_option("detach", True)driver = webdriver.Chrome(options=option)
解决特征识别的代码:
script = 'Object.defineProperty(navigator, "webdriver", {get: () => false,});'driver.execute_script(script)
如果不采取去除特征识别,即以下两行代码。则页面的滑块验证码在滑动后,会显示如下图的出错,从而阻止登录进行。因为服务器识别到的selenium
的特征。使用该两行代码更改了特征,即可以顺利通过识别。
“怎么用python行为链登录12306”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!
--结束END--
本文标题: 怎么用python行为链登录12306
本文链接: https://lsjlt.com/news/322270.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0