- DebugUtils - Class in org.testfx.util
-
Utility class for displaying additional info, running code, or capturing an image of a test whenever
a test fails using
FxAssert.verifyThat(Node, Matcher) or its related methods.
- defaultImagePath() - Static method in class org.testfx.util.DebugUtils
-
- defaultImagePath(String) - Static method in class org.testfx.util.DebugUtils
-
Returns () -> Paths.get(testName + " - 0.png");
- defaultImagePath(String, int) - Static method in class org.testfx.util.DebugUtils
-
Returns () -> Paths.get(testName + " - " photoNumber + ".png");
- Dimension2DAssert - Class in org.testfx.assertions.api
-
Assertion methods for Dimension2Ds.
- Dimension2DAssert(Dimension2D) - Constructor for class org.testfx.assertions.api.Dimension2DAssert
-
- doesNotContainRow(Object...) - Method in class org.testfx.assertions.api.AbstractTableViewAssert
-
Verifies that the actual TableView does not contain the given
table cells at any row index.
- doesNotContainRowAtIndex(int, Object...) - Method in class org.testfx.assertions.api.AbstractTableViewAssert
-
Verifies that the actual TableView does not contain the given
table cells at the given rowIndex.
- doesNotHaveChild(String) - Method in class org.testfx.assertions.api.AbstractNodeAssert
-
Verifies that the actual Node does not have a specific child Node.
- doesNotHaveClosestNamedColor(Color) - Method in class org.testfx.assertions.api.AbstractColorAssert
-
Verifies that the actual Color does not have the given namedColor as their
closest named color.
- doesNotHaveClosestNamedColor(String) - Method in class org.testfx.assertions.api.AbstractColorAssert
-
Verifies that the actual Color does not have the given namedColor as their
closest named color.
- doesNotHaveColoredText(String) - Method in class org.testfx.assertions.api.AbstractTextFlowAssert
-
Verifies that the actual TextFlow does not have the given coloredTextMarkup.
- doesNotHaveDimension(double, double) - Method in class org.testfx.assertions.api.AbstractDimension2DAssert
-
Verifies that the actual Dimension2D does not have either the
given width and/or height.
- doesNotHaveExactlyColoredText(String) - Method in class org.testfx.assertions.api.AbstractTextFlowAssert
-
Verifies that the actual TextFlow does not have exactly the given
coloredTextMarkup.
- doesNotHaveExactlyNumChildren(int) - Method in class org.testfx.assertions.api.AbstractParentAssert
-
Verifies that the actual Parent does not have exactly the given
amount of children.
- doesNotHaveExactlyNumItems(int) - Method in class org.testfx.assertions.api.AbstractComboBoxAssert
-
Verifies that the actual ComboBox does not have exactly the
given amount of items.
- doesNotHaveExactlyNumItems(int) - Method in class org.testfx.assertions.api.AbstractListViewAssert
-
Verifies that the actual ListView does not have exactly the
given amount of items.
- doesNotHaveExactlyNumRows(int) - Method in class org.testfx.assertions.api.AbstractTableViewAssert
-
Verifies that the actual TableView does not have exactly the given
amount of rows.
- doesNotHaveFont(Font) - Method in class org.testfx.assertions.api.AbstractTextAssert
-
Verifies that the actual Text does not have the given font.
- doesNotHaveFontSmoothingType(FontSmoothingType) - Method in class org.testfx.assertions.api.AbstractTextAssert
-
Verifies that the actual Text does not have the given smoothingType
(either FontSmoothingType.GRAY or FontSmoothingType.LCD).
- doesNotHaveListCell(Object) - Method in class org.testfx.assertions.api.AbstractListViewAssert
-
Verifies that the actual ListView does not contain the
given list cell value.
- doesNotHavePlaceholder(Node) - Method in class org.testfx.assertions.api.AbstractListViewAssert
-
Verifies that the actual ListView does not have the given
placeHolder node.
- doesNotHaveSelectedItem(T) - Method in class org.testfx.assertions.api.AbstractComboBoxAssert
-
Verifies that the actual ComboBox does not have the given
selection as its' selected item.
- doesNotHaveStrikethrough() - Method in class org.testfx.assertions.api.AbstractTextAssert
-
Verifies that the actual Text does not have strikethrough (that is, should be drawn
with a line through it).
- doesNotHaveTableCell(Object) - Method in class org.testfx.assertions.api.AbstractTableViewAssert
-
Verifies that the actual TableView does not contain the given table
cell expectedValue.
- doesNotHaveText(String) - Method in class org.testfx.assertions.api.AbstractLabeledAssert
-
Verifies that the actual Labeled does not have exactly the given text.
- doesNotHaveText(Matcher<String>) - Method in class org.testfx.assertions.api.AbstractLabeledAssert
-
Verifies that the actual Labeled is not matched by the given matcher.
- doesNotHaveText(String) - Method in class org.testfx.assertions.api.AbstractTextAssert
-
Verifies that the actual Text does not have exactly the given text.
- doesNotHaveText(Matcher<String>) - Method in class org.testfx.assertions.api.AbstractTextAssert
-
Verifies that the actual Text is not matched by the given matcher.
- doesNotHaveText(String) - Method in class org.testfx.assertions.api.AbstractTextFlowAssert
-
Verifies that the actual TextFlow does not have exactly the given
text (the result of combining all of its text-based children's text together).
- doesNotHaveText(String) - Method in class org.testfx.assertions.api.AbstractTextInputControlAssert
-
Verifies that the actual TextInputControl does not have exactly the
given text.
- doesNotHaveText(Matcher<String>) - Method in class org.testfx.assertions.api.AbstractTextInputControlAssert
-
Verifies that the actual TextInputControl is not matched by the given
matcher.
- doesNotHaveVisiblePlaceholder(Node) - Method in class org.testfx.assertions.api.AbstractListViewAssert
-
Verifies that the actual ListView does not have the given visible
placeHolder.
- doubleClickOn(MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(PointQuery, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(double, double, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(Point2D, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(Bounds, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(Node, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(Scene, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(Window, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(String, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(Matcher<T>, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(Predicate<T>, Motion, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- doubleClickOn(MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- doubleClickOn(PointQuery, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- doubleClickOn(PointQuery, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- doubleClickOn(double, double, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- doubleClickOn(double, double, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- doubleClickOn(Point2D, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse directly to the point returned from
FxRobotInterface.point(Point2D), double
clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Point2D, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse using the given
motion (see:
Motion to the point returned from
FxRobotInterface.point(Point2D), double clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Bounds, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse directly to the point returned from
FxRobotInterface.point(Bounds), double
clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Bounds, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse using the given
motion (see:
Motion to the point returned from
FxRobotInterface.point(Bounds), double clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Node, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse directly to the point returned from
FxRobotInterface.point(Node), double
clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Node, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse using the given
motion (see:
Motion to the point returned from
FxRobotInterface.point(Node), double clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Scene, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse directly to the point returned from
FxRobotInterface.point(Scene), double
clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Scene, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse using the given
motion (see:
Motion to the point returned from
FxRobotInterface.point(Scene), double clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Window, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse directly to the point returned from
FxRobotInterface.point(Window), double
clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Window, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse using the given
motion (see:
Motion to the point returned from
FxRobotInterface.point(Window), double clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(String, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse directly to the point returned from
FxRobotInterface.point(String), double
clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(String, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse using the given
motion (see:
Motion to the point returned from
FxRobotInterface.point(String), double clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Matcher<T>, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse directly to the point returned from
FxRobotInterface.point(Matcher), double
clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Matcher<T>, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse using the given
motion (see:
Motion to the point returned from
FxRobotInterface.point(Matcher), double clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Predicate<T>, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse directly to the point returned from
FxRobotInterface.point(Predicate), double
clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(Predicate<T>, Motion, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse using the given
motion (see:
Motion to the point returned from
FxRobotInterface.point(Predicate), double clicks the given buttons, and returns itself for method chaining.
- doubleClickOn(MouseButton...) - Method in interface org.testfx.robot.ClickRobot
-
Double-clicks whatever is under the mouse.
- doubleClickOn(PointQuery, MouseButton...) - Method in interface org.testfx.robot.ClickRobot
-
Moves the mouse directly to the location specified by the given
PointQuery.query() and
double-clicks whatever is under it.
- doubleClickOn(PointQuery, Motion, MouseButton...) - Method in interface org.testfx.robot.ClickRobot
-
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.
- doubleClickOn(MouseButton...) - Method in class org.testfx.robot.impl.ClickRobotImpl
-
- doubleClickOn(PointQuery, Motion, MouseButton...) - Method in class org.testfx.robot.impl.ClickRobotImpl
-
- drag(MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(PointQuery, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(double, double, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(Point2D, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(Bounds, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(Node, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(Scene, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(Window, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(String, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(Matcher<T>, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(Predicate<T>, MouseButton...) - Method in class org.testfx.api.FxRobot
-
- drag(MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- drag(PointQuery, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- drag(double, double, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- drag(Point2D, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse to the point returned from
FxRobotInterface.point(Point2D), presses the given
buttons, and returns itself for method chaining.
- drag(Bounds, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse to the point returned from
FxRobotInterface.point(Bounds), presses the given
buttons, and returns itself for method chaining.
- drag(Node, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse to the point returned from
FxRobotInterface.point(Node), presses the given
buttons, and returns itself for method chaining.
- drag(Scene, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse to the point returned from
FxRobotInterface.point(Scene), presses the given
buttons, and returns itself for method chaining.
- drag(Window, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse to the point returned from
FxRobotInterface.point(Window), presses the given
buttons, and returns itself for method chaining.
- drag(String, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse to the point returned from
FxRobotInterface.point(String), presses the given
buttons, and returns itself for method chaining.
- drag(Matcher<T>, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
Convenience method: Moves mouse to the point returned from
FxRobotInterface.point(Matcher), presses the given
buttons, and returns itself for method chaining.
- drag(Predicate<T>, MouseButton...) - Method in interface org.testfx.api.FxRobotInterface
-
- drag(MouseButton...) - Method in interface org.testfx.robot.DragRobot
-
Presses the given mouse button(s) on whatever is under the mouse's current location.
- drag(PointQuery, MouseButton...) - Method in interface org.testfx.robot.DragRobot
-
Moves the mouse to the location specified by the given
PointQuery.query() and then presses the
given mouse button(s) on whatever is under the mouse's new location.
- drag(MouseButton...) - Method in class org.testfx.robot.impl.DragRobotImpl
-
- drag(PointQuery, MouseButton...) - Method in class org.testfx.robot.impl.DragRobotImpl
-
- DragRobot - Interface in org.testfx.robot
-
- DragRobotImpl - Class in org.testfx.robot.impl
-
- DragRobotImpl(MouseRobot, MoveRobot) - Constructor for class org.testfx.robot.impl.DragRobotImpl
-
- drop() - Method in class org.testfx.api.FxRobot
-
- drop() - Method in interface org.testfx.api.FxRobotInterface
-
- drop() - Method in interface org.testfx.robot.DragRobot
-
Releases the mouse at its' current position.
- drop() - Method in class org.testfx.robot.impl.DragRobotImpl
-
- dropBy(double, double) - Method in class org.testfx.api.FxRobot
-
- dropBy(double, double) - Method in interface org.testfx.api.FxRobotInterface
-
- dropBy(double, double) - Method in interface org.testfx.robot.DragRobot
-
Moves the mouse horizontally by x and vertically by y before releasing the mouse.
- dropBy(double, double) - Method in class org.testfx.robot.impl.DragRobotImpl
-
- dropTo(PointQuery) - Method in class org.testfx.api.FxRobot
-
- dropTo(double, double) - Method in class org.testfx.api.FxRobot
-
- dropTo(Point2D) - Method in class org.testfx.api.FxRobot
-
- dropTo(Bounds) - Method in class org.testfx.api.FxRobot
-
- dropTo(Node) - Method in class org.testfx.api.FxRobot
-
- dropTo(Scene) - Method in class org.testfx.api.FxRobot
-
- dropTo(Window) - Method in class org.testfx.api.FxRobot
-
- dropTo(String) - Method in class org.testfx.api.FxRobot
-
- dropTo(Matcher<T>) - Method in class org.testfx.api.FxRobot
-
- dropTo(Predicate<T>) - Method in class org.testfx.api.FxRobot
-
- dropTo(PointQuery) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(double, double) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(Point2D) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(Bounds) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(Node) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(Scene) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(Window) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(String) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(Matcher<T>) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(Predicate<T>) - Method in interface org.testfx.api.FxRobotInterface
-
- dropTo(PointQuery) - Method in interface org.testfx.robot.DragRobot
-
Moves the mouse to the location specified by the given
PointQuery.query() and then
releases the mouse.
- dropTo(PointQuery) - Method in class org.testfx.robot.impl.DragRobotImpl
-