- 安装pyautogui
pip install Pillow
pip install opencv-python
pip install pyautogui
- 常用命令
# 获取鼠标指针当前坐标
print(pyautogui.position())
# 移动鼠标指针到指定坐标并点击
pyautogui.click(369,951, duration=1)
# 模拟按键command a
pyautogui.hotkey('command','a')
# 模拟输入admin
pyautogui.typewrite('admin')
- 自动登录及退出登录实现
import pyautogui
print(pyautogui.position())
# 打开谷歌浏览器
pyautogui.click(369,951, duration=1)
# 访问指定页面
pyautogui.click(818,129, duration=1)
# 输入用户名
pyautogui.click(663,403, duration=1)
pyautogui.hotkey('command','a')
pyautogui.typewrite('admin')
# 输入密码
pyautogui.click(693,486, duration=1)
pyautogui.hotkey('command','a')
pyautogui.typewrite('Admin@123')
# 点击登录
pyautogui.click(749,553, duration=1)
# 点击退出登录
pyautogui.click(43,901, duration=1)
pyautogui.click(67,849, duration=1)
- 实现效果
谢谢关注