Questions tagged as 'pyautogui'

1
answer

How to hold a key press on the pyautogui

I would like to hold down a key for x seconds. I know that tapping the key is: pyautogui.press("key") But how can I keep it pressed?     
asked by 29.10.2017 / 01:55
0
answers

PYAUTOGUI functions not working

I am automating the installation of software using python with pyautogui: import pyautogui import time import pyperclip for window in pyautogui.getWindows(): pyautogui.getWindow(window).minimize() ##Abre local do .exe pyautogui.hotkey("w...
asked by 28.08.2018 / 15:50
1
answer

A question about python PyAutoGUI?

Is it possible, by chance, to use PyAutoGUI in a browser that is not appearing on the screen? I type a code for PyAutoGUI to work with the coordinates of a specific browser (eg Firefox) while I view other things on the screen ex: see youtube vid...
asked by 27.02.2018 / 14:47
1
answer

pyautogui compare result CTRL + V

I have the following code import pyautogui pyautogui.moveTo(612, 269) pyautogui.doubleClick() copiar = pyautogui.hotkey('ctrl', 'c') colar = pyautogui.hotkey('ctrl', 'v') resultado = colar print(resultado) but my print is returning "None"....
asked by 24.11.2017 / 18:22