Untitled

Anonymous
plain_text
07/26/2024 6:36 PM
300 B
25
Indexable
import pyautogui
import pyperclip # Deixar em Português

def escrever_frase(frase):
    pyperclip.copy(frase)
    pyautogui.hotkey('ctrl','v')

pyautogui.click(712,97,duration=2)
escrever_frase('Automação é Incrível!')
Editor is loading...
Leave a Comment