pyautogui\'s click method\'s issue: I am running the script from Spyder, if I click anything on Spyder\'s window the click works fine.
If I execute a script to open Outl
I was also facing same issue, Here is what I tried :
Just add one more line pyautogui.dragTo() to focus on that particular selected area:
pyautogui.dragTo()
pyautogui.moveTo(990,28) pyautogui.dragTo() pyautogui.click()