Skip to content Skip to sidebar Skip to footer

Having Trouble Clicking In Program - Pyautogui

I'm trying to click into a program window using pyautogui. When clicking in the program window, on a button I wish to press, a loading icon appears next to the mouse cursor as if i

Solution 1:

If the application in running as administrator and pyautogui script is not running as administrators, then control will not work. pyautogui script should also run as administrator to control it

Solution 2:

Try giving the interval argument

pyautogui.doubleClick(x=300, y=300, interval=0.25)

Post a Comment for "Having Trouble Clicking In Program - Pyautogui"