Untitled

 avatar
unknown
plain_text
a year ago
208 B
10
Indexable
import pyautogui
import pyperclip

def writePhrase(phrase):
    pyperclip.copy(phrase)
    pyautogui.hotkey('ctrl', 'v')

pyautogui.click(1079,121, duration=2)
writePhrase('Automação é incrível!')
Editor is loading...
Leave a Comment