Untitled

 avatar
unknown
plain_text
9 months ago
252 B
9
Indexable
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)
Editor is loading...
Leave a Comment