溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么用python行為鏈登錄12306

發(fā)布時(shí)間:2022-02-11 09:14:03 來(lái)源:億速云 閱讀:158 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“怎么用python行為鏈登錄12306”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

使用python網(wǎng)絡(luò)爬蟲登錄12306,網(wǎng)站界面如下。因?yàn)榫W(wǎng)站的反爬是不斷升級(jí)的,以下代碼雖然當(dāng)前可用,但早晚必將會(huì)不再能滿足登錄需求。但是知識(shí)的價(jià)值,是不容置疑的。

怎么用python行為鏈登錄12306

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
import time
from selenium.webdriver import ChromeOptions

# 去除瀏覽器識(shí)別
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')

# 解決特征識(shí)別
script = 'Object.defineProperty(navigator, "webdriver", {get: () => false,});'
driver.execute_script(script)

# 輸入賬號(hào)
driver.find_element_by_id('J-userName').send_keys('123@163.com')

# 輸入密碼
driver.find_element_by_id('J-password').send_keys('xxxxxxx')

# 點(diǎn)擊登陸
driver.find_element_by_id('J-login').click()

# 等待2秒鐘,不要點(diǎn)的太快,以免被識(shí)別或者以免網(wǎng)頁(yè)加載跟不上。
time.sleep(2)

# 滑動(dòng)
# 定位 滑塊標(biāo)簽
span = driver.find_element_by_id('nc_1_n1z')
actions = ActionChains(driver) # 行為鏈實(shí)例化
time.sleep(2) # 等待2秒鐘

# 經(jīng)截圖測(cè)量,滑塊需要滑過(guò)的距離為300像素
actions.click_and_hold(span).move_by_offset(300, 0).perform() # 滑動(dòng)

解決瀏覽器識(shí)別:

其中的以下這幾行代碼,可用去除瀏覽器對(duì)selenium的識(shí)別,如圖可以使瀏覽器頁(yè)面不再顯示圖中“Chrome正受到自動(dòng)測(cè)試軟件的控制”字樣。

from selenium.webdriver import ChromeOptions

option = ChromeOptions()
option.add_experimental_option('excludeSwitches', ['enable-automation'])
option.add_experimental_option("detach", True)

driver = webdriver.Chrome(options=option)

怎么用python行為鏈登錄12306

解決特征識(shí)別的代碼:

script = 'Object.defineProperty(navigator, "webdriver", {get: () => false,});'
driver.execute_script(script)

如果不采取去除特征識(shí)別,即以下兩行代碼。則頁(yè)面的滑塊驗(yàn)證碼在滑動(dòng)后,會(huì)顯示如下圖的出錯(cuò),從而阻止登錄進(jìn)行。因?yàn)?a title="服務(wù)器" target="_blank" href="http://kemok4.com/">服務(wù)器識(shí)別到的selenium的特征。使用該兩行代碼更改了特征,即可以順利通過(guò)識(shí)別。

怎么用python行為鏈登錄12306

“怎么用python行為鏈登錄12306”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI