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":
- Primary Button = 0 which is the default (in general, the left button)
- Auxiliary Button = 1 (in general, the middle button)
- 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":
- Primary Button = 0 which is the default (in general, the left button)
- Auxiliary Button = 1 (in general, the middle button)
- Secondary Button = 2 (in general, the right button)
Link to this section Functions
mouse_down(button \\ 0)
View Source
mouse_down(integer()) :: :ok
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":
- Primary Button = 0 which is the default (in general, the left button)
- Auxiliary Button = 1 (in general, the middle button)
Secondary Button = 2 (in general, the right button)
mouse_down()
mouse_up(button \\ 0)
View Source
mouse_up(integer()) :: :ok
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":
- Primary Button = 0 which is the default (in general, the left button)
- Auxiliary Button = 1 (in general, the middle button)
Secondary Button = 2 (in general, the right button)
mouse_up()