hound v1.1.1 Hound.Helpers.Mouse View Source

Functions to work with the mouse

Link to this section Summary

Functions

Triggers a mousedown event on the current position of the mouse, which can be set through Helpers.Element.move_to/3. The mousedown event can get triggered with three different "buttons":

  1. Primary Button = 0 which is the default (in general, the left button)
  2. Auxiliary Button = 1 (in general, the middle button)
  3. Secondary Button = 2 (in general, the right button)

Triggers a mouseup event on the current position of the mouse, which can be set through Helpers.Element.move_to/3. The mouseup event can get triggered with three different "buttons":

  1. Primary Button = 0 which is the default (in general, the left button)
  2. Auxiliary Button = 1 (in general, the middle button)
  3. Secondary Button = 2 (in general, the right button)

Link to this section Functions

Link to this function

mouse_down(button \\ 0) View Source
mouse_down(integer()) :: :ok

Triggers a mousedown event on the current position of the mouse, which can be set through Helpers.Element.move_to/3. The mousedown event can get triggered with three different "buttons":

  1. Primary Button = 0 which is the default (in general, the left button)
  2. Auxiliary Button = 1 (in general, the middle button)
  3. Secondary Button = 2 (in general, the right button)

    mouse_down()

Link to this function

mouse_up(button \\ 0) View Source
mouse_up(integer()) :: :ok

Triggers a mouseup event on the current position of the mouse, which can be set through Helpers.Element.move_to/3. The mouseup event can get triggered with three different "buttons":

  1. Primary Button = 0 which is the default (in general, the left button)
  2. Auxiliary Button = 1 (in general, the middle button)
  3. Secondary Button = 2 (in general, the right button)

    mouse_up()