Autopy Mouse Functionality

482 Views Asked by At

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")
1

There are 1 best solutions below

0
On

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,

autopy.mouse.click(autopy.mouse.Button.RIGHT)

likewise for the left, autopy.mouse.Button.LEFT. I hope it useful.