Untitled

 avatar
unknown
plain_text
10 months ago
381 B
5
Indexable
import pyautogui
import pyperclip
from time import sleep

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

pyautogui.moveTo(420,744, duration=2)
pyautogui.click()
pyautogui.typewrite("bloco de notas")
pyautogui.moveTo(540,182, duration=3)
pyautogui.click()
sleep(1)
pyautogui.click()
escrever_frase('Automação é incrível!')
Editor is loading...
Leave a Comment