If you know the screen coordinates you want to click, you could try:
import pyautogui
x, y = 500, 250 # or whatever
pyautogui.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 pyautogui
x, y = 500, 250 # or whatever
pyautogui.click(x, y)
This will move to mouse pointer to (x, y) and do a left mouse click.