Untitled

mail@pastecode.io avatar
unknown
plain_text
22 days ago
208 B
3
Indexable
Never
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!')
Leave a Comment