其实说出来不怕大家笑话,我在学习爬虫的初始阶段梦想就是实现全自动登录b站并且获取b站里面自己想要获取的数据。如今也终于是实现了这个梦想,很感激csdn各位博主,您们撰写的博客给我带来的很大的帮助,谢谢~
这一次我也总结了一下b站点触验证码的破解和b站的完整登录,希望能够帮助到需要的人,下面开始分析讲解。

1、需要用到的库

import time
import requests
from PIL import Image
from io import BytesIO
from selenium import webdriver
from chaojiying_Python import chaojiying
from selenium.webdriver.common.action_chains import ActionChains

虽然有点小多,但是除了超级鹰,大部分还都算是常用的库,问题还不算大。所以接下来就说一下超级鹰的使用,包括怎么调用超级鹰(就是这个 from chaojiying_Python import chaojiying)

1.1、超级鹰

先给超级鹰做一下简单介绍:超级鹰,全称 超级鹰打码平台 (是个很好用的东西 emmm)
网站链接 :https://www.chaojiying.com/

1、先注册,然后登陆(这个就不教了吧=。=)

2、点击开发文档

3、进入开发文档后,找到自己对应的编程语言,因为我这里是python所以默认就用python了

4、点击(点击这里下载)下载超级鹰文档,下载完成后你就可以得到一个超级鹰文档的压缩包啦

5、解压缩后就能够得到这样一个文件包


咱们运行其中的py文件就可以了

6、打开py文件后我们拉到最下面去就可以在入口处看到这个东西

第一行的三个参数分别是你的超级鹰账号、密码、软件id。
第二行就是要读取的图片路径,rb就不做解释了
第三行1902那个是验证码的类型

7、软件id的获取

我们在网页登陆了超级鹰后会默认进入用户中心,把页面下拉会看到软件id这个字样,点进去

点进去后你们这里一开始是没有这个软件id列表的,我们可以点击上面的生成一个软件id

软件名称随便填,说明不需要填,软件key是自动生成。填完后就点击提交,就可以得到一个软件id。

8、验证码类型的获取

我们直接点击这个价格体系,进去后就可以看到各种验证码类型,我们可以根据具体需求选择具体的验证码类型进行使用,本次b站登录案例我们用的是:9005

9、学分的充值

返回用户中心,点击这个立即充值(进去后选择自定义额度,不要一下子整100进去了哈哈)

至此,超级鹰如何使用也就算是说完了,当然说的不是很完整,但是已经足够我们这个案例取用

2、b站模拟登陆

本次测试用的网站:https://passport.bilibili.com/login

2.1、登陆前准备

    def __init__(self):"""self.user_name:b站登录账号self.password:b站登录密码self.chaojiying_user_name:超级鹰登录账号self.chaojiying_password:超级鹰登陆密码self.chaojiying_ID:超级鹰软件IDself.chaojiying_kind:超级鹰验证码类型:return:None"""self.url = 'https://passport.bilibili.com/login'self.driver = webdriver.Chrome()self.driver.maximize_window()self.username = 'B站账号'self.password = 'B站密码'self.chaojiying_user_name = '超级鹰账号'self.chaojiying_password = '超级鹰密码'self.chaojiying_ID = '超级鹰软件id'self.pic_id = ''self.chaojiying = chaojiying.Chaojiying_Client(self.chaojiying_user_name, self.chaojiying_password,self.chaojiying_ID)

在开始实现登录前先准备好我们的东西,放在初始化方法里面。
self.chaojiying = chaojiying.Chaojiying_Client(self.chaojiying_user_name, self.chaojiying_password, self.chaojiying_ID)在初始化方法里面的这一条是通过调用了超级鹰py文件里面的方法。跟前面我们说过的调用超级鹰就有关系啦,至于超级鹰怎么导入,你直接把超级鹰解压缩的文件包放在跟你代码的同级目录下然后进行调用from chaojiying_Python import chaojiying就可以了。

2.2、打开网站

    def open(self):"""输入b站账号密码:return:None"""self.driver.get(self.url)self.driver.find_element_by_id('login-username').send_keys(self.username)self.driver.find_element_by_id('login-passwd').send_keys(self.password)

2.3、获取登录按钮

    def get_touclick_button(self):"""获取初次验证按钮:return: 登录按钮"""# 获取初始验证按钮button = self.driver.find_element_by_xpath('//*[@id="geetest-wrap"]/div/div[5]/a[1]')return button

2.4、获取点触验证码并且进行验证码的处理

    def pick_code(self):"""获得点触验证码并且进行点触验证码的处理:return: None"""time.sleep(3)# 获取点触图片的标签pick_img_label = self.driver.find_element_by_css_selector('img.geetest_item_img')# 获取点触图片的链接src = pick_img_label.get_attribute('src')response = requests.get(src).content# 文件的读写f = BytesIO()f.write(response)img = Image.open(f)# 获取图片与浏览器该标签的大小比例scale = [pick_img_label.size['width'] / img.size[0],pick_img_label.size['height'] / img.size[1]]# 调用超级鹰cjy = chaojiying.Chaojiying_Client(self.chaojiying_user_name, self.chaojiying_password, self.chaojiying_ID)result = cjy.PostPic(response, 9005)# 对结果进行分析position = result['pic_str'].split('|')position = [[int(j) for j in i.split(',')] for i in position]if result['err_no'] == 0:for item in position:ActionChains(self.driver).move_to_element_with_offset(pick_img_label, item[0] * scale[0],item[1] * scale[1]).click().perform()time.sleep(1)time.sleep(2)btn = self.driver.find_element_by_css_selector('div.geetest_commit_tip')time.sleep(1)btn.click()

从代码量上来看不难看出这个地方就是整个登录最难的地方了。有几个点我在自己做的时候遇到过一些问题,跟大家分享一下。

2.4.1、获取图片与浏览器该标签的大小比例

scale = [pick_img_label.size['width'] / img.size[0],pick_img_label.size['height'] / img.size[1]]

这个地方是一定必要的,如果你不去获取图片和浏览器的大小比例,后面你点击的时候就会发现他会点不到

2.4.2、调用超级鹰

cjy = chaojiying.Chaojiying_Client(self.chaojiying_user_name, self.chaojiying_password, self.chaojiying_ID)result = cjy.PostPic(response, 9005)

result运行出来的最后结果:{'err_no': 0, 'err_str': 'OK', 'pic_id': '1162317367529700100', 'pic_str': '145, 59|245, 255|158, 271|241, 150', 'md5': '188f2726a81e33871e57b57be76b71ef'}我们先记住这个结果,接着往下看

2.4.3、pic_str 对结果进行分析

pic_str,(字符串) 识别出的结果。对坐标进行分析,通过split和循环嵌套把坐标解析成我们需要的方法
最后的结果是:[[145, 59], [245, 255], [158, 271], [241, 150]]这个样子的(当然每幅图片坐标肯定是不一样的,所以你们这个位置的值也会跟我不一样,很正常)

2.4.4、err_no

err_no,(数值) 返回代码,如果返回的是0就代表成功返回了。我们加一个判断,返回0就进行点击操作

 if result['err_no'] == 0:for item in position:ActionChains(self.driver).move_to_element_with_offset(pick_img_label, item[0] * scale[0],item[1] * scale[1]).click().perform()

2.5、登陆失败时候的处理

一般来说打码平台也不是百分之一百的能够登录成功的,这时候我们就需要对他进行一个判断,让验证码识别失败的重新的进行识别。我们可以通过判断url是否切换来判断是否登录成功。代码如下:

    def detect(self):"""登陆失败时的处理:return:None"""current = self.driver.current_urlif (current == 'https://passport.bilibili.com/account/security#/home' orcurrent == 'https://www.bilibili.com/'):print('Success!!')else:self.chaojiying.ReportError(self.pic_id)self.pick_code()self.detect()

至此,b站的点出模拟登录也就算是结束了,再次感谢csdn各位大佬们的帮助。下面放出完整代码,有不对的地方也希望大家能指正出来,谢谢~~

import time
import requests
from PIL import Image
from io import BytesIO
from selenium import webdriver
from chaojiying_Python import chaojiying
from selenium.webdriver.common.action_chains import ActionChainsclass BiliiliSpider(object):def __init__(self):"""self.user_name:b站登录账号self.password:b站登录密码self.chaojiying_user_name:超级鹰登录账号self.chaojiying_password:超级鹰登陆密码self.chaojiying_ID:超级鹰软件IDself.chaojiying_kind:超级鹰验证码类型:return:None"""self.url = 'https://passport.bilibili.com/login'self.driver = webdriver.Chrome()self.driver.maximize_window()self.username = '18676556724'self.password = '1997yx0912'self.chaojiying_user_name = 'chatblanc'self.chaojiying_password = '1997yx0912'self.chaojiying_ID = 925932self.pic_id = ''self.chaojiying = chaojiying.Chaojiying_Client(self.chaojiying_user_name, self.chaojiying_password,self.chaojiying_ID)def open(self):"""输入b站账号密码:return:None"""self.driver.get(self.url)self.driver.find_element_by_id('login-username').send_keys(self.username)self.driver.find_element_by_id('login-passwd').send_keys(self.password)def get_touclick_button(self):"""获取初次验证按钮:return: 登录按钮"""# 获取初始验证按钮button = self.driver.find_element_by_xpath('//*[@id="geetest-wrap"]/div/div[5]/a[1]')return buttondef pick_code(self):"""获得点触验证码并且进行点触验证码的处理:return: None"""time.sleep(3)# 获取点触图片的标签pick_img_label = self.driver.find_element_by_css_selector('img.geetest_item_img')# 获取点触图片的链接src = pick_img_label.get_attribute('src')response = requests.get(src).content# 文件的读写f = BytesIO()f.write(response)img = Image.open(f)# 获取图片与浏览器该标签的大小比例scale = [pick_img_label.size['width'] / img.size[0],pick_img_label.size['height'] / img.size[1]]# 调用超级鹰cjy = chaojiying.Chaojiying_Client(self.chaojiying_user_name, self.chaojiying_password, self.chaojiying_ID)result = cjy.PostPic(response, 9005)# 对结果进行分析position = result['pic_str'].split('|')position = [[int(j) for j in i.split(',')] for i in position]if result['err_no'] == 0:for item in position:ActionChains(self.driver).move_to_element_with_offset(pick_img_label, item[0] * scale[0],item[1] * scale[1]).click().perform()time.sleep(1)time.sleep(2)# 定位确定按钮btn = self.driver.find_element_by_css_selector('div.geetest_commit_tip')time.sleep(1)btn.click()def detect(self):"""登陆失败时的处理:return:None"""current = self.driver.current_urlif (current == 'https://passport.bilibili.com/account/security#/home' orcurrent == 'https://www.bilibili.com/'):print('Success!!')else:self.chaojiying.ReportError(self.pic_id)self.pick_code()self.detect()def main(self):"""主函数:return:None"""self.open()time.sleep(2)button = self.get_touclick_button()button.click()self.pick_code()time.sleep(2)# self.detect()if __name__ == '__main__':bilibili = BiliiliSpider()bilibili.main()

Python | 爬虫 | selenium自动化测试 | b站点触验证码登录相关推荐

  1. [python爬虫] Selenium常见元素定位方法和操作的学习介绍(转载)

    转载地址:[python爬虫] Selenium常见元素定位方法和操作的学习介绍 一. 定位元素方法 官网地址:http://selenium-python.readthedocs.org/locat ...

  2. Python 爬虫 Selenium 基本使用

    Python 爬虫 Selenium 基本使用 1. 基础知识 1.1 下载浏览器驱动 1.2 帮助文档 2. 浏览器操作 2.1 浏览器导航 2.2 窗口和选项卡 2.3 Frames and If ...

  3. python3爬虫系列23之selenium+腾讯OCR识别验证码登录微博且抓取数据

    python3爬虫系列23之selenium+腾讯OCR识别验证码登录微博且抓取数据 1.前言 上一篇是一个 python3爬虫系列22之selenium模拟登录需要验证码的微博且抓取数据, 我们是首 ...

  4. Python爬虫——Selenium 简介和下载

    文章目录 Python爬虫--Selenium 简介和下载 1.Selenium 简介 2.Selenium 下载安装 3.Selenium 简单使用 Python爬虫--Selenium 简介和下载 ...

  5. [Python爬虫] Selenium获取百度百科旅游景点的InfoBox消息盒

    前面我讲述过如何通过BeautifulSoup获取维基百科的消息盒,同样可以通过Spider获取网站内容,最近学习了Selenium+Phantomjs后,准备利用它们获取百度百科的旅游景点消息盒(I ...

  6. [Python爬虫] Selenium+Phantomjs动态获取CSDN下载资源信息和评论

    前面几篇文章介绍了Selenium.PhantomJS的基础知识及安装过程,这篇文章是一篇应用.通过Selenium调用Phantomjs获取CSDN下载资源的信息,最重要的是动态获取资源的评论,它是 ...

  7. [Python爬虫] Selenium实现自动登录163邮箱和Locating Elements介绍

    前三篇文章介绍了安装过程和通过Selenium实现访问Firefox浏览器并自动搜索"Eastmount"关键字及截图的功能.而这篇文章主要简单介绍如何实现自动登录163邮箱,同时 ...

  8. Python爬虫 Selenium实现自动登录163邮箱和Locating Elements介绍

    Python爬虫视频教程零基础小白到scrapy爬虫高手-轻松入门 https://item.taobao.com/item.htm?spm=a1z38n.10677092.0.0.482434a6E ...

  9. Python爬虫-Selenium(1)

    Python爬虫-Selenium(1) @(博客)[python, 爬虫, selenium, Python] Python爬虫-Selenium(1) 前言 前期准备 基础使用 进阶使用 浏览器操 ...

最新文章

  1. 从硬盘上装xp手记(2005.8.14 )
  2. agent proxy comparison
  3. python 怎么判断字符串是否有换行_JAVA中如何判断一个字符串是否换行
  4. 删除链表的中间节点 Java实现_【链表问题】删除单链表的中间节点
  5. python设置堆大小_Python中的堆问题
  6. SQLAlchemy框架
  7. P2639 [USACO09OCT]Bessie的体重问题 【背包问题】
  8. 脑子好,蹦两下!--程序员应该玩的小游戏
  9. 现有Android项目引入ReactNative--九步大法
  10. Redisson 3.13.6 发布,官方推荐的 Redis 客户端
  11. 做竞品分析常常借用的信息分析工具和网站
  12. bluetoothctl No default controller available
  13. Windows系统下隐藏的文件
  14. VS2019试用期结束怎么办
  15. gp-greenplum-vacuum-资源回收-AO表空间回收
  16. Streamlit - 小记
  17. 计算机英语吕,“吕”字有了正式英文名“LYU”
  18. 数学中最神奇的常数-无理数e
  19. 一个好用的Outlook ost格式文件转pst文件的工具
  20. 如何用人工智能预测股票(完整项目)

热门文章

  1. Centos7:给/dev/mapper/cl-root分区扩容
  2. 【智能优化算法-灰狼算法】基于贪婪非分级灰狼优化器求解单目标优化问题附matlab代码
  3. 你竟然是这样的人工智能?
  4. 为什么说内存比硬盘快??
  5. 中国新能源汽车产业十四五应用建设与发展布局研究报告2022版
  6. k-dimensional tree
  7. 柏链道捷孟岩:区块链应用,最重要的是经济系统设计
  8. 股票期货数据接口常见的代码介绍
  9. 软考高项 : (26)计算题汇总
  10. 【汇正财经】有色:全球钼价轮番拉涨,小市场或有大行情