Untitled

mail@pastecode.io avatar
unknown
python
5 months ago
202 B
6
Indexable
import pyautogui
from time import sleep

# Posição de algo usando o mouseInfo
# Fazer algo com essa posição
pyautogui.moveTo(1510,446,duration=2)

for i in range(1000):
    pyautogui.click()
Leave a Comment