I would like to change the location of the PyAutoGui confirm window that pops up. How can I do this?
import pyautogui
pyautogui.confirm(text='title', title='title', buttons=['1', '2'])
I would like to change the location of the PyAutoGui confirm window that pops up. How can I do this?
import pyautogui
pyautogui.confirm(text='title', title='title', buttons=['1', '2'])
According to the documentation, the way to choose the location of the confirm box, is not stated. But a temporary solution, would be to use a set of drag and drop actions knowing the default location of the confirm box, to move the boxes to whatever pixel coordinates needed.