Untitled
unknown
plain_text
14 days ago
252 B
3
Indexable
Never
import pyautogui import pyperclip def escrever_frase(frase): pyperclip.copy(frase) pyautogui.hotkey('ctrl','v') pyautogui.moveTo(796,162,duration=1) pyautogui.click() escrever_frase('Automação é Incrivel!') time.sleep(2)
Leave a Comment