#1 Pyautogui - Click loop

 avatar
user_7544414
python
12 days ago
217 B
6
Indexable
Never
import pyautogui
from time import sleep

# Posição de algo - use o mouseInfo()
# Fazer algo com essa posição

pyautogui.moveTo(620,607,duration=2)
for i in range(300):
    sleep(0.1)
    pyautogui.click()
Leave a Comment