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
To anyone who might stumble into the same issue on a Mac, I was able to get it working by using a workaround that is using the pynput library.
Code:
import pyautogui from pynput.mouse import Button, Controller mouse = Controller() pyautogui.moveTo(x,y) mouse.click(Button.left)