If you know the screen coordinates you want to click, you could try:
import pyautoguix, y = 500, 250 # or whateverpyautogui.click(x, y)
This will move to mouse pointer to (x, y) and do a left mouse click.
If you know the screen coordinates you want to click, you could try:
import pyautoguix, y = 500, 250 # or whateverpyautogui.click(x, y)
This will move to mouse pointer to (x, y) and do a left mouse click.