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
OS X Mojave, the following works for me:
pyautogui.moveTo(pos) pyautogui.dragTo(button='left')
pyautogui.click() throws an attribute error but pyautogui.dragTo() works instead.
pyautogui.click()
pyautogui.dragTo()