so my problem is -
I made a simple app in python which checks if a program runs, if not it runs the program and perform a couple of mouse clicks on that program.
For some reason, I can't mouse click the program, Altho if I set it to just do some mouse click on the desktop for example it works great... Any chance that the program blocks my automated clicks? shouldn't it stimulate a normal mouse click as I click my self?
attaching a code just so will see how I make the mouse click -
app.update()
app.focus_force()
pywinauto.mouse.click(button='left', coords=(1096, 728))
btw, Iv'e also tried to make the clicks with simple ctypes which didn't help.
thanks for reading.