赞
踩
目录
PyAutoGUI 是一个纯 Python 的 GUI 自动化工具,通过它可以让程序自动控制鼠标和键盘的一系列操作来达到自动化测试的目的。具体的模块安装方式就自己百度吧。。。。
以下是PyAutoGUI模块的全部功能介绍:
总的来说,PyAutoGUI的功能非常丰富,能够满足各种自动化脚本的需求。通过使用这些功能,可以编写出高效、稳定、可靠的自动化脚本,提高工作效率和生活便利性。
- # 移动鼠标
- pyautogui.moveTo(200,400,duration=2) # 绝对位置(200,400)移动
- pyautogui.moveRel(200,500,duration=2) # 相对位置(200,500)移动
里面的duration参数是移动的时间,单位为秒。
print(pyautogui.position())
- # 鼠标点击,默认左键
- pyautogui.click(100,100)
- # 单击左键
- pyautogui.click(100,100,button='left')
- # 单击右键
- pyautogui.click(100,300,button='right')
- # 单击中间
- pyautogui.click(100,300,button='middle')
- # 双击左键
- pyautogui.doubleClick(100,100)
- # 双击右键
- pyautogui.rightClick(100,100)
- # 双击中键
- pyautogui.middleClick(100,100)
- # 鼠标按下
- pyautogui.mouseDown()
- # 鼠标释放
- pyautogui.mouseUp()
- pyautogui.dragTo(100,300,duration=1) # 绝对位置拖动
- pyautogui.dragRel(100,300,duration=1) # 相对位置拖动
里面的duration参数是拖动的时间,单位为秒。
pyautogui.scroll(30000)
- im = pyautogui.screenshot() # 获取整个屏幕的截图,并将其存储在变量 im 中
- im.save('screenshot.png') # 将截图保存为名为 'screenshot.png' 的图像文件
- rgb = im.getpixel((100, 500)) # 获取截图中坐标为 (100, 500) 处的像素颜色,并存在变量 rgb 中
- print(rgb) # 打印出获取的像素颜色的 RGB 值
- match = pyautogui.pixelMatchesColor(500,500,(12,120,400)) # 检查屏幕上坐标 (500, 500) 处的像素颜色是否与给定的颜色值 (12, 120, 400) 匹配,并结果存在 match 中
- print(match) # 打印出颜色匹配的结果
- # 获取屏幕分辨率
- numx_y = pygui.size()
- print(numx_y)
- # 图像识别(一个)
- oneLocation = pyautogui.locateOnScreen('1.png')
- print(oneLocation)
-
- # 图像识别(多个)
- allLocation = pyautogui.locateAllOnScreen('1.png')
- print(list(allLocation))
- pyautogui.keyDown('shift') # 模拟按下 Shift 键
- pyautogui.press('1') # 模拟按下数字键 1
- pyautogui.keyUp('shift') # 释放 Shift 键
pyautogui.typewrite('python', 1)
里面的duration参数是模拟输入的速度,单位为秒。
pyautogui.typewrite(['p','y','t','h','o','n','enter']) # 模拟输入python后,模拟按下回车键
pyautogui.hotkey('ctrl','c') # 模拟按下 Ctrl + C 键
- # 弹出选择框
- way = pyautogui.confirm('该走哪条路?', buttons=['马路', '水路'])
- print(way)
-
- # 弹出警告框
- alert = pyautogui.alert(text='警告!敌军来袭!', title='警告')
- print(alert)
-
- # 弹出密码框
- password = pyautogui.password('输入密码')
- print(password)
-
- # 弹出普通输入框
- input = pyautogui.prompt('输入指令:')
- print(input)
- import pyautogui as pygui
- import time
-
- while True :
- print(pygui.position()) # 打印鼠标的位置
- time.sleep(0.2) # 延时0.2s
首先需要把点赞图标保存为img.png图片,这里自行操作。
- import pyautogui as pygui
- import time
-
- # 获取屏幕分辨率
- numx_y = pygui.size()
- print(numx_y)
-
- numx = numx_y.width/2
- numy = numx_y.height/2
- print(numx,numy)
-
- # 移动鼠标
- pygui.moveTo(numx,numy,duration=0.2) # 绝对位置(numx,numy)移动
-
- # 循环检测5次
- for x in range(0,5):
-
- # 图像识别(一个)
- oneLocation = pygui.locateOnScreen('img.png')
- print(oneLocation)
-
- # 判断是否识别到图标
- if(oneLocation==None):
- # 弹出警告框
- alert = pygui.alert(text='没找到自动点赞图标', title='警告')
- else:
- # 单击图标按钮
- pygui.click(oneLocation)
- # 弹出完成框
- alert = pygui.alert(text='已自动点赞,点击“OK”退出', title='成功')
-
- # 退出循环
- if(alert=='OK'):
- print("运行完成退出")
- break
-
- # 屏幕滚动
- pygui.scroll(-3000)
-
-
官方文档:Welcome to PyAutoGUI’s documentation! — PyAutoGUI documentation
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。