selenium-登录B站案例

利用打码平台完成B站点选验证码

打码平台:图鉴

tu_jian_api.py

#!/usr/bin/env python
# -*- coding: utf-8 -*-

# @Author : CZW

import base64
import json
import requests

# 图鉴账号密码
uname = ""
pwd = ""


def base64_api(img, typeid):
    with open(img, 'rb') as f:
        base64_data = base64.b64encode(f.read())
        b64 = base64_data.decode()
    data = {"username": uname, "password": pwd, "typeid": typeid, "image": b64}
    result = json.loads(requests.post("http://api.ttshitu.com/predict", json=data).text)
    if result['success']:
        return result["data"]["result"]
    else:
        return result["message"]
    return ""

#!/usr/bin/env python
# -*- coding: utf-8 -*-

# @Author : CZW
# B站登录-图鉴代码平台-点选验证码

import time
from selenium import webdriver
from selenium.webdriver import ActionChains  # 动作链
from tu_jian_api import base64_api  # 图鉴

# 哔哩哔哩账号密码
user_name = "12345678"
user_pwd = "88888888"

# 浏览器对象
driver = webdriver.Chrome()

# 访问哔哩哔哩登录页
driver.get("https://passport.bilibili.com/login")

# 输入账号
driver.find_element_by_xpath('//input[@id="login-username"]').send_keys(user_name)
time.sleep(1)

# 输入密码
driver.find_element_by_xpath('//input[@id="login-passwd"]').send_keys(user_pwd)
time.sleep(1)

# 点击登录
driver.find_element_by_xpath('//a[text()="登录"]').click()
time.sleep(3)

# 找到弹出验证码框的节点元素
yzm_element = driver.find_element_by_xpath('//div[@class="geetest_panel_next"]')
time.sleep(1)

# 保存截取验证码框的图片
yzm_element.screenshot("bilibili_yzm.png")

# 图鉴打码
code_result = base64_api(r"./bilibili_yzm.png", 27)
print("坐标", code_result)

# 根据坐标点击
for item in code_result.split("|"):
    x = item.split(",")[0]
    y = item.split(",")[-1]
    print(x, y)
    ActionChains(driver).move_to_element_with_offset(yzm_element, int(x), int(y)).click().perform()
time.sleep(1)

# 点击确认
driver.find_element_by_xpath('//div[text()="确认"]').click()
time.sleep(3)

# 进入个人主页
driver.get("https://space.bilibili.com/")

input("回车关闭>>>")
driver.quit()
driver.close()
print("执行完毕")

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值