Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
208 B
6
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!')
Leave a Comment