如何实现python自动打开B站视频并点赞?

import pyautogui
import time
import webbrowser
import os

# 浏览器运行目录
chromePath = r"C:\Users\Administrator\AppData\Local\Google\Chrome\Application\chrome.exe"

# 注册浏览器
webbrowser.register('chrome', None, webbrowser.BackgroundBrowser(chromePath))

# 获取浏览器并打开指定地址
webbrowser.get('chrome').open('https://www.bilibili.com/v/life/daily/?spm_id_from=333.5.b_6c6966655f6461696c79.2#/',
                              new=1, autoraise=True)

# 睡眠5秒
# time.sleep(5)

# 关闭chrome浏览器
# os.system('taskkill /F /IM chrome.exe')
time.sleep(3)
pyautogui.size()
print(pyautogui.size())
# ————————————————打开指定网址——————
# time.sleep(3)效果不行
pyautogui.PAUSE = 1
pyautogui.scroll(-800)
pyautogui.click(x=287, y=231, clicks=1, interval=0.0, duration=0.0)
#-----------打开第一个sp
pyautogui.scroll(-300)  # 向下滚动100
#_____________
while True:
	#跳过可能会发生的TypeError: cannot unpack non-iterable NoneType object错误
    try:
    	#搜索点赞按钮
        img_find = pyautogui.locateOnScreen('0209.png')
        left,top,width,height = img_find
    except:
        pass
    if img_find:
    	#点击按钮中心
        pyautogui.click(pyautogui.center((left,top,width,height)))
        #点击后停顿一下防止鼠标误点
        time.sleep(0.5)
        #记录点赞次数
        print('成功点赞'+str(i)+'次')
        i+=1
    else:
        break

注意分辨率及会标

你可能感兴趣的:(pyautogui自动化,python库,python爬虫,python,自动化,pycharm)