Class DragRobotImpl
java.lang.Object
org.testfx.robot.impl.DragRobotImpl
- All Implemented Interfaces:
DragRobot
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddrag(javafx.scene.input.MouseButton... buttons) Presses the given mouse button(s) on whatever is under the mouse's current location.voiddrag(PointQuery pointQuery, javafx.scene.input.MouseButton... buttons) Moves the mouse to the location specified by the givenPointQuery.query()and then presses the given mouse button(s) on whatever is under the mouse's new location.voiddrop()Releases the mouse at its' current position.voiddropBy(double x, double y) Moves the mouse horizontally byxand vertically byybefore releasing the mouse.voiddropTo(PointQuery pointQuery) Moves the mouse to the location specified by the givenPointQuery.query()and then releases the mouse.
-
Field Details
-
mouseRobot
-
moveRobot
-
-
Constructor Details
-
DragRobotImpl
-
-
Method Details
-
drag
-
drag
Description copied from interface:DragRobotMoves the mouse to the location specified by the givenPointQuery.query()and then presses the given mouse button(s) on whatever is under the mouse's new location. -
drop
-
dropTo
Description copied from interface:DragRobotMoves the mouse to the location specified by the givenPointQuery.query()and then releases the mouse. -
dropBy
public void dropBy(double x, double y) Description copied from interface:DragRobotMoves the mouse horizontally byxand vertically byybefore releasing the mouse.
-