How to performed Right Click with Autopy.
In autopy we perform mouse left click by
autopy.mouse.click() #to perform left click
how to perform Right click with autopy or is there any other way to perform right click.
I tried following way but not working.
autopy.mouse.click(Button = "RIGHT")
autopy.mouse.click("RIGHT_BUTTON")
I recently encountered with similar problem. and I just found something that might be a solution.
In Argument, you just have to put
autopy.mouse.Button.RIGHT
. for example if you want to make it right,likewise for the left,
autopy.mouse.Button.LEFT
. I hope it useful.