python实现隔段时间点击一下电脑屏幕的某块区域
2021-04-19 21:27
标签:time while 区域 += python实现 点击 cond gui 电脑 python实现隔段时间点击一下电脑屏幕的某块区域 标签:time while 区域 += python实现 点击 cond gui 电脑 原文地址:https://www.cnblogs.com/he-qing-qing/p/13287845.htmlimport time
import pyautogui
x, y = 302, 534 # 鼠标需要移动到的位置
num_seconds = 2 # 将鼠标移动到指定坐标的间隔时间
time.sleep(8) # 延迟8秒
pyautogui.moveTo(x, y, duration=num_seconds)
time.sleep(3) # 延迟3秒
i = 0
while True:
time.sleep(2)
pyautogui.click()
i += 1
print(i)
上一篇:OC项目转Swift指南