12306模拟登录

12306 模拟登录

模拟登录就是使用selenium对浏览器进行操作

1.实例化浏览器对象,访问登录页面

bro = webdriver.Chrome(executable_path=r'浏览器驱动程序路径')

bro.get('https://kyfw.12306.cn/otn/login/init')# 访问要登录页面url

sleep(5) # 阻塞是为了让页面加载完成

2.对验证码进行捕获并处理得到坐标

注意点:此时不能访问验证码图片的url去获取图片,访问后登录时使用的验证码就变化了,失去了意思,

此时要使用截图,截下整个屏幕的图片,再进行裁剪

bro.save_screenshot('main.png') # 将获取到截屏保存下来

定位验证码图片对应的标签,并获取其相对于整个页面的坐标、长宽,获取到要裁剪的矩形区域

#定位到了验证码图片对应的标签
code_img_ele = bro.find_element_by_xpath('//*[@id="loginForm"]/div/ul[2]/li[4]/div/div/div[3]/img')

location = code_img_ele.location #验证码图片基于当前整张页面的左下角坐标
size = code_img_ele.size #验证码图片的长和宽

#裁剪的矩形区域(左下角和右上角两点的坐标)
rangle = (int(location['x']),int(location['y']), int(location['x']+size['width']),int(location['y']+size['height']))

裁剪获取到验证码图片

from PIL import Image #用作于图片的裁剪

i = Image.open('main.png')
frame = i.crop(rangle)
frame.save('code.png')

使用打码平台(超级鹰)对验证码进行识别,获取坐标,以用来添加点击事件

需要下载相应打码平台的实例化工具文件

from ChaoJiYing import Chaojiying_Client

chaojiying = Chaojiying_Client('用户名', '密码', '软件ID')	
im = open('code.png', 'rb').read()							
result = chaojiying.PostPic(im, 9004)['pic_str']

print(result)#x1,y1|x2,y2|x3,y3  ==> [[x1,y1],[x2,y2],[x3,y3]]

3.对坐标进行处理,得到坐标列表

all_list = []#[[x1,y1],[x2,y2],[x3,y3]] 每一个列表元素表示一个点的坐标,坐标对应值的0,0点是验证码图片左下角

if '|' in result: # 有多个坐标
    list_1 = result.split('|')
    count_1 = len(list_1)
    for i in range(count_1):
        xy_list = []
        x = int(list_1[i].split(',')[0])
        y = int(list_1[i].split(',')[1])
        xy_list.append(x)
        xy_list.append(y)
        all_list.append(xy_list)
else: # 只有一个坐标
    x = int(result.split(',')[0])
    y = int(result.split(',')[1])
    xy_list = []
    xy_list.append(x)
    xy_list.append(y)
    all_list.append(xy_list)

4.创建动作链进行点击验证码

from selenium.webdriver import ActionChains

# action = ActionChains(bro)
for l in all_list:
    x = l[0]
    y = l[1]
    ActionChains(bro).move_to_element_with_offset(code_img_ele,x,y).click().perform()
    sleep(1)

5.定位用户名密码input标签,输入用户名密码,并点击登录

# 定位input框,输入用户名密码进行登录
user_input = bro.find_element_by_id('username')
user_input.send_keys('')
pwd_input = bro.find_element_by_id('password')
pwd_input.send_keys('')

# 定位登录按钮,并添加点击事件
login_btn = bro.find_element_by_id('loginSub')
login_btn.click()

成功登录代码

from selenium import webdriver
from selenium.webdriver import ActionChains
from PIL import Image #用作于图片的裁剪
from ChaoJiYing import Chaojiying_Client
from time import sleep

bro = webdriver.Chrome(executable_path=r'E:\爬虫\异步和selenium使用\chromedriver.exe')
bro.get('https://kyfw.12306.cn/otn/login/init')
sleep(3)

# 定位input框,输入用户名密码进行登录
user_input = bro.find_element_by_id('username')
user_input.send_keys('')
pwd_input = bro.find_element_by_id('password')
pwd_input.send_keys('')

#验证码图片进行捕获(裁剪)
bro.save_screenshot('main.png')
#定位到了验证码图片对应的标签
# code_img_ele = bro.find_element_by_xpath('//*[@id="loginForm"]/div/ul[2]/li[4]/div/div/div[3]/img')
code_img_ele = bro.find_element_by_xpath('//*[@id="loginForm"]/div/ul[2]/li[4]/div/div/div[3]/img')
location = code_img_ele.location #验证码图片基于当前整张页面的左下角坐标
size = code_img_ele.size #验证码图片的长和宽
#裁剪的矩形区域(左下角和右上角两点的坐标)
rangle = (int(location['x']),int(location['y']),int(location['x']+size['width']),int(location['y']+size['height']))

i = Image.open('main.png')
frame = i.crop(rangle)
frame.save('code.png')

#使用打码平台进行验证码的识别
chaojiying = Chaojiying_Client('', '', '')
im = open('code.png', 'rb').read()
result = chaojiying.PostPic(im, 9004)['pic_str']
print(result)#x1,y1|x2,y2|x3,y3  ==> [[x1,y1],[x2,y2],[x3,y3]]
all_list = []#[[x1,y1],[x2,y2],[x3,y3]] 每一个列表元素表示一个点的坐标,坐标对应值的0,0点是验证码图片左下角

if '|' in result: # 有多个坐标
    list_1 = result.split('|')
    count_1 = len(list_1)
    for i in range(count_1):
        xy_list = []
        x = int(list_1[i].split(',')[0])
        y = int(list_1[i].split(',')[1])
        xy_list.append(x)
        xy_list.append(y)
        all_list.append(xy_list)
else: # 只有一个坐标
    x = int(result.split(',')[0])
    y = int(result.split(',')[1])
    xy_list = []
    xy_list.append(x)
    xy_list.append(y)
    all_list.append(xy_list)

# action = ActionChains(bro)
for l in all_list:
    x = l[0]
    y = l[1]
    ActionChains(bro).move_to_element_with_offset(code_img_ele,x,y).click().perform()
    sleep(1)

sleep(3)


# 定位登录按钮,并添加点击事件
login_btn = bro.find_element_by_id('loginSub')
login_btn.click()


# bro.quit()
posted @ 2020-06-07 12:56  Hedger_Lee  阅读(217)  评论(0编辑  收藏  举报