Method: MacOS::Mouse#right_click

Defined in:
lib/macos/mouse.rb

#right_click(x:, y:) ⇒ Object

Parameters:

  • x (Integer)
  • y (Integer)


85
86
87
88
# File 'lib/macos/mouse.rb', line 85

def right_click(x:, y:)
  right_down(x:, y:)
  right_up(x:, y:)
end