您好,登錄后才能下訂單哦!
本篇文章為大家展示了使用selenium怎么實現一個模擬登錄功能,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
用我們的開發者工具定位到輸入賬號和密碼的窗口,找到并send_keys
driver.find_element_by_id('username').send_keys('用戶名') time.sleep(0.5) driver.find_element_by_id('password').send_keys('密碼')
然后復雜的過程就來了。我們想要得到驗證碼的圖片。但是頭疼的是,圖片是再變化的。我們請求一次,就變化一次,不像其他普通網站一樣不會變化,直接保存圖片就行了。但是這是12306誒,哪這么輕松。想了想,我決定把整張頁面截屏保存下來,然后對驗證碼區域裁剪下來,就可以保證一致了。
# 將頁面進行截圖并保存 driver.save_screenshot('12306登錄頁面截圖.png') # 確定驗證碼左上角和右下角的坐標 code_img = driver.find_element_by_xpath('//*[@id="loginForm"]/div/ul[2]/li[4]/div/div/div[3]/img') location = code_img.location # 確定驗證碼圖片左上角的坐標 print('location:', location) size = code_img.size # 確定驗證碼圖片的長和寬 print('size:', size) rangle = (int(location['x']), int(location['y']), int(location['x']) + int(size['width']), int(location['y']) + int(size['height'])) print('rangle:', rangle) i = Image.open('12306頁面截圖.png') # 對指定區域裁剪 code_pic = i.crop(rangle) file_name = 'code_pic.png' code_pic.save(file_name) time.sleep(2) print('驗證碼圖片保存成功!!')
我們識別驗證碼用的是超級鷹,具體如何使用可以去查一查。驗證碼有可能需要我們點擊多個,所以通過打碼平臺會得到多個坐標,就比如這種。有兩個日歷,需要點擊兩次,通過超級鷹就會得到兩個坐標。如下圖。我們發現有兩個坐標會有一個“|”,有三個坐標就有兩個“|”,所以我們就把他們split下,讓每個坐標嵌套再一個列表里。此過程代碼如下:
# 識別驗證坐標 chaojiying = Chaojiying_Client('用戶賬號', '密碼', '開發者賬號') # 用戶中心>>軟件ID 生成一個替換 96001 im = open('code_pic.png', 'rb').read() # 本地圖片文件路徑 來替換 a.jpg 有時WIN系統須要// result = chaojiying.PostPic(im, 9004)['pic_str'] # 1902 驗證碼類型 官方網站>>價格體系 3.4+版 print 后要加() all_list = [] # 存儲被點擊的坐標 if '|' in result: list1 = result.split('|') xy_list = [] count1 = len(list1) for i in list1: x = int(list1[i].split(',')[0]) xy_list.append(x) y = int(list1[i].split(',')[1]) xy_list.append(y) all_list.append(xy_list) else: xy_list = [] x = int(result.split(',')[0]) xy_list.append(x) y = int(result.split(',')[1]) xy_list.append(y) all_list.append(xy_list) print(all_list)
最后嘛,我們得到了驗證碼的坐標,當然就去點擊啦。但是,這個坐標是相對于驗證碼的圖片的坐標,我們必須用ActionChains來移動一下動作鏈的位置。把他移動到驗證碼圖片的location。,然后點擊就ok了。此步驟的代碼如下:
# 循環遍歷點擊圖片 for i in all_list: x = i[0] y = i[1] action = ActionChains(driver).move_to_element_with_offset(code_img, x, y).click().perform() time.sleep(1) driver.find_element_by_id('loginSub').click()
最后來看看全部代碼吧!!
這個代碼是超級鷹提供的接口。我封裝成一個類了。
#!/usr/bin/env python # coding:utf-8 import requests from hashlib import md5 class Chaojiying_Client(object): def __init__(self, username, password, soft_id): self.username = username password = password.encode('utf8') self.password = md5(password).hexdigest() self.soft_id = soft_id self.base_params = { 'user': self.username, 'pass2': self.password, 'softid': self.soft_id, } self.headers = { 'Connection': 'Keep-Alive', 'User-Agent': 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', } def PostPic(self, im, codetype): """ im: 圖片字節 codetype: 題目類型 參考 http://www.chaojiying.com/price.html """ params = { 'codetype': codetype, } params.update(self.base_params) files = {'userfile': ('ccc.jpg', im)} r = requests.post('http://upload.chaojiying.net/Upload/Processing.php', data=params, files=files, headers=self.headers) return r.json() def ReportError(self, im_id): """ im_id:報錯題目的圖片ID """ params = { 'id': im_id, } params.update(self.base_params) r = requests.post('http://upload.chaojiying.net/Upload/ReportError.php', data=params, headers=self.headers) return r.json()
下面是自己寫的,也就六七十行。
from selenium import webdriver from chaojiying_Python.chaojiying import Chaojiying_Client import time from PIL import Image from selenium.webdriver import ActionChains from selenium.webdriver.chrome.options import Options # 實現無可視化界面的操作 # chrome_options = Options() # chrome_options.add_argument('--headless') # chrome_options.add_argument('--disable-gpu') driver = webdriver.Chrome('D:\software\studySoftware\chromedriver_win32\chromedriver.exe') driver.get('https://kyfw.12306.cn/otn/login/init') # driver.maximize_window() time.sleep(1) driver.find_element_by_id('username').send_keys('用戶名') time.sleep(0.5) driver.find_element_by_id('password').send_keys('密碼') # 將頁面進行截圖并保存 driver.save_screenshot('12306登錄頁面截圖.png') # 確定驗證碼左上角和右下角的坐標 code_img = driver.find_element_by_xpath('//*[@id="loginForm"]/div/ul[2]/li[4]/div/div/div[3]/img') location = code_img.location # 確定驗證碼圖片左上角的坐標 print('location:', location) size = code_img.size # 確定驗證碼圖片的長和寬 print('size:', size) rangle = (int(location['x']), int(location['y']), int(location['x']) + int(size['width']), int(location['y']) + int(size['height'])) print('rangle:', rangle) i = Image.open('12306頁面截圖.png') # 對指定區域裁剪 code_pic = i.crop(rangle) file_name = 'code_pic.png' code_pic.save(file_name) time.sleep(2) print('驗證碼圖片保存成功!!') # 識別驗證坐標 chaojiying = Chaojiying_Client('用戶賬號', '密碼', '開發者賬號') # 用戶中心>>軟件ID 生成一個替換 96001 im = open('code_pic.png', 'rb').read() # 本地圖片文件路徑 來替換 a.jpg 有時WIN系統須要// result = chaojiying.PostPic(im, 9004)['pic_str'] # 1902 驗證碼類型 官方網站>>價格體系 3.4+版 print 后要加() all_list = [] # 存儲被點擊的坐標 if '|' in result: list1 = result.split('|') xy_list = [] count1 = len(list1) for i in list1: x = int(list1[i].split(',')[0]) xy_list.append(x) y = int(list1[i].split(',')[1]) xy_list.append(y) all_list.append(xy_list) else: xy_list = [] x = int(result.split(',')[0]) xy_list.append(x) y = int(result.split(',')[1]) xy_list.append(y) all_list.append(xy_list) print(all_list) # 循環遍歷點擊圖片 for i in all_list: x = i[0] y = i[1] action = ActionChains(driver).move_to_element_with_offset(code_img, x, y).click().perform() time.sleep(1) driver.find_element_by_id('loginSub').click()
上述內容就是使用selenium怎么實現一個模擬登錄功能,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。