public interface ClickRobot
| Modifier and Type | Method and Description |
|---|---|
void |
clickOn(javafx.scene.input.MouseButton... buttons)
Clicks whatever is under the mouse.
|
void |
clickOn(PointQuery pointQuery,
Motion motion,
javafx.scene.input.MouseButton... buttons)
Moves the mouse to the location specified by the given
PointQuery.query() using
the specified motion (see: Motion) and clicks whatever is under it. |
default void |
clickOn(PointQuery pointQuery,
javafx.scene.input.MouseButton... buttons)
Moves the mouse directly to the location specified by the given
PointQuery.query() and
clicks whatever is under it. |
void |
doubleClickOn(javafx.scene.input.MouseButton... buttons)
Double-clicks whatever is under the mouse.
|
void |
doubleClickOn(PointQuery pointQuery,
Motion motion,
javafx.scene.input.MouseButton... buttons)
Moves the mouse to the location specified by the given
PointQuery.query() using
the specified motion (see: Motion and double-clicks whatever is under it. |
default void |
doubleClickOn(PointQuery pointQuery,
javafx.scene.input.MouseButton... buttons)
Moves the mouse directly to the location specified by the given
PointQuery.query() and
double-clicks whatever is under it. |
void clickOn(javafx.scene.input.MouseButton... buttons)
buttons - the mouse buttons to clickdefault void clickOn(PointQuery pointQuery, javafx.scene.input.MouseButton... buttons)
PointQuery.query() and
clicks whatever is under it.pointQuery - the pointQuery that specifies the location to move the mouse tobuttons - the mouse buttons to clickvoid clickOn(PointQuery pointQuery, Motion motion, javafx.scene.input.MouseButton... buttons)
PointQuery.query() using
the specified motion (see: Motion) and clicks whatever is under it.pointQuery - the pointQuery that specifies the location to move the mouse tomotion - the type of motion to use for movementbuttons - the mouse buttons to clickvoid doubleClickOn(javafx.scene.input.MouseButton... buttons)
buttons - the mouse buttons to double-clickdefault void doubleClickOn(PointQuery pointQuery, javafx.scene.input.MouseButton... buttons)
PointQuery.query() and
double-clicks whatever is under it.pointQuery - the pointQuery that specifies the location to move the mouse tobuttons - the mouse buttons to double-clickvoid doubleClickOn(PointQuery pointQuery, Motion motion, javafx.scene.input.MouseButton... buttons)
PointQuery.query() using
the specified motion (see: Motion and double-clicks whatever is under it.pointQuery - the pointQuery that specifies the location to move the mouse tomotion - the type of motion to use for movementbuttons - the mouse buttons to double-click