Untitled

Anonymous
plain_text
08/22/2024 2:23 PM
280 B
25
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