A B C D E F G H I J K L M N O P Q R S T U V W 
All Classes All Packages

M

MAC - org.testfx.internal.PlatformAdapter.OS
 
match(Predicate<T>) - Method in class org.testfx.service.query.impl.NodeQueryImpl
 
match(Predicate<T>) - Method in interface org.testfx.service.query.NodeQuery
Sifts through stored nodes and keeps only those Nodes that pass the given predicate.
match(Image, Image) - Method in class org.testfx.service.support.impl.PixelMatcherBase
 
match(Image, Image) - Method in interface org.testfx.service.support.PixelMatcher
Returns a PixelMatcherResult that indicates how similar/dissimilar the two images were.
match(Matcher<T>) - Method in class org.testfx.service.query.impl.NodeQueryImpl
 
match(Matcher<T>) - Method in interface org.testfx.service.query.NodeQuery
Sifts through stored nodes and keeps only those Nodes that match the given matcher.
matchColors(Color, Color) - Method in interface org.testfx.service.support.ColorMatcher
Returns true if color0 is close enough to color1 as determined by a color distance/factor.
matchColors(Color, Color) - Method in class org.testfx.service.support.impl.PixelMatcherRgb
 
matchesMatcher(Matcher<Node>) - Static method in class org.testfx.util.NodeQueryUtils
Returns a predicate that returns true if the given node matches the given matcher.
matchImages(Image, Image, PixelMatcher) - Method in interface org.testfx.service.support.CaptureSupport
Compares two images and returns a PixelMatcherResult that defines the how similar/dissimilar one was from the other.
matchImages(Image, Image, PixelMatcher) - Method in class org.testfx.service.support.impl.CaptureSupportImpl
 
MenuItemAssert - Class in org.testfx.assertions.api
Assertion methods for MenuItems.
MenuItemAssert(MenuItem) - Constructor for class org.testfx.assertions.api.MenuItemAssert
 
MenuItemMatchers - Class in org.testfx.matcher.control
TestFX matchers for MenuItem controls.
Motion - Enum in org.testfx.robot
Enumeration holding the three simplest types of motion between two 2D points a = (x₁, y₁) and b = (x₂, y₂).
mouseClick(MouseButton) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
mouseClick(MouseButton, int) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
mouseDrag(MouseButton) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
mouseMove(Point2D) - Method in class org.testfx.service.adapter.impl.AwtRobotAdapter
 
mouseMove(Point2D) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
mouseMove(Point2D) - Method in interface org.testfx.service.adapter.RobotAdapter
Moves the mouse cursor to the given position in JavaFx coordinates
mousePress(MouseButton) - Method in class org.testfx.service.adapter.impl.AwtRobotAdapter
 
mousePress(MouseButton) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
mousePress(MouseButton) - Method in interface org.testfx.service.adapter.RobotAdapter
Makes the robot press a mouse button.
mousePress(MouseButton, int) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
mouseRelease(MouseButton) - Method in class org.testfx.service.adapter.impl.AwtRobotAdapter
 
mouseRelease(MouseButton) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
mouseRelease(MouseButton) - Method in interface org.testfx.service.adapter.RobotAdapter
Makes the robot release a mouse button.
mouseRelease(MouseButton, int) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
MouseRobot - Interface in org.testfx.robot
 
MouseRobotImpl - Class in org.testfx.robot.impl
 
MouseRobotImpl(BaseRobot) - Constructor for class org.testfx.robot.impl.MouseRobotImpl
 
mouseWheel(int) - Method in class org.testfx.service.adapter.impl.AwtRobotAdapter
 
mouseWheel(int) - Method in class org.testfx.service.adapter.impl.GlassRobotAdapter
 
mouseWheel(int) - Method in class org.testfx.service.adapter.impl.JavafxRobotAdapter
 
mouseWheel(int) - Method in interface org.testfx.service.adapter.RobotAdapter
Makes the robot to simulate a action of the mouse wheel.
Negative values indicate movement up/away from the user, positive values indicate movement down/towards the user.
move(Point2D) - Method in class org.testfx.robot.impl.MouseRobotImpl
 
move(Point2D) - Method in interface org.testfx.robot.MouseRobot
Moves the mouse to the given location.
moveBy(double, double) - Method in interface org.testfx.api.FxRobotInterface
Calls MoveRobot.moveBy(double, double) and returns itself for more method chaining.
moveBy(double, double) - Method in interface org.testfx.robot.MoveRobot
Moves the mouse directly (see: Motion.DIRECT from the current location to the given (x, y) location.
moveBy(double, double, Motion) - Method in class org.testfx.api.FxRobot
 
moveBy(double, double, Motion) - Method in interface org.testfx.api.FxRobotInterface
Calls MoveRobot.moveBy(double, double, Motion) and returns itself for more method chaining.
moveBy(double, double, Motion) - Method in class org.testfx.robot.impl.MoveRobotImpl
 
moveBy(double, double, Motion) - Method in interface org.testfx.robot.MoveRobot
Moves the mouse from the current location to the given (x, y) location.
moveMouse(Point2D) - Method in interface org.testfx.robot.BaseRobot
 
moveMouse(Point2D) - Method in class org.testfx.robot.impl.BaseRobotImpl
 
moveNoWait(Point2D) - Method in class org.testfx.robot.impl.MouseRobotImpl
 
moveNoWait(Point2D) - Method in interface org.testfx.robot.MouseRobot
Moves the mouse to the given location.
MoveRobot - Interface in org.testfx.robot
 
MoveRobotImpl - Class in org.testfx.robot.impl
 
MoveRobotImpl(BaseRobot, MouseRobot, SleepRobot) - Constructor for class org.testfx.robot.impl.MoveRobotImpl
 
moveTo(double, double) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the point returned from FxRobotInterface.point(double, double) and returns itself for method chaining.
moveTo(double, double, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(double, double, Motion) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse using the given motion (see: Motion to the point returned from FxRobotInterface.point(double, double) and returns itself for method chaining.
moveTo(String) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the point returned from FxRobotInterface.point(String) and returns itself for method chaining.
moveTo(String, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(String, Motion) - 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) and returns itself for method chaining.
moveTo(Predicate<T>) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the point returned from FxRobotInterface.point(Predicate) and returns itself for method chaining.
moveTo(Predicate<T>, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(Predicate<T>, Motion) - 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) and returns itself for method chaining.
moveTo(Bounds) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the center of the given Bounds and returns itself for method chaining.
moveTo(Bounds, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(Bounds, Motion) - 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) and returns itself for method chaining.
moveTo(Point2D) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the point returned from FxRobotInterface.point(Point2D) and returns itself for method chaining.
moveTo(Point2D, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(Point2D, Motion) - 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) and returns itself for method chaining.
moveTo(Node) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the center of the given Node and returns itself for method chaining.
moveTo(Node, Point2D) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the point returned from FxRobotInterface.point(Node), with the given offset from the center of the given Node, and returns itself for method chaining.
moveTo(Node, Pos, Point2D, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(Node, Pos, Point2D, Motion) - 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), with the given offset (from the offsetReferencePos, and returns itself for method chaining.
moveTo(Node, Motion) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse using the given motion (see: Motion to the center of the given Node and returns itself for method chaining.
moveTo(Scene) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the center of the given Scene and returns itself for method chaining.
moveTo(Scene, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(Scene, Motion) - 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) and returns itself for method chaining.
moveTo(Window) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the center of the given Window and returns itself for method chaining.
moveTo(Window, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(Window, Motion) - 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) and returns itself for method chaining.
moveTo(Matcher<T>) - Method in interface org.testfx.api.FxRobotInterface
Convenience method: Moves mouse directly to the point returned from FxRobotInterface.point(Matcher) and returns itself for method chaining.
moveTo(Matcher<T>, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(Matcher<T>, Motion) - 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) and returns itself for method chaining.
moveTo(PointQuery) - Method in interface org.testfx.api.FxRobotInterface
Calls MoveRobot.moveTo(PointQuery) and returns itself for more method chaining.
moveTo(PointQuery) - Method in interface org.testfx.robot.MoveRobot
Moves the mouse directly to the (x,y) position specified by the given PointQuery.query().
moveTo(PointQuery, Motion) - Method in class org.testfx.api.FxRobot
 
moveTo(PointQuery, Motion) - Method in interface org.testfx.api.FxRobotInterface
Calls MoveRobot.moveTo(PointQuery, Motion) and returns itself for more method chaining.
moveTo(PointQuery, Motion) - Method in class org.testfx.robot.impl.MoveRobotImpl
 
moveTo(PointQuery, Motion) - Method in interface org.testfx.robot.MoveRobot
Moves the mouse to the (x,y) position specified by the given PointQuery.query() using the specified motion (see: Motion) and clicks whatever is under it.
A B C D E F G H I J K L M N O P Q R S T U V W 
All Classes All Packages