#1 Pyautogui - Click loop
user_7544414
python
a year ago
217 B
16
Indexable
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()Editor is loading...
Leave a Comment