Untitled

 avatar
unknown
plain_text
a year ago
223 B
8
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