Uses of Interface
org.testfx.service.query.NodeQuery
-
Packages that use NodeQuery Package Description org.testfx.api org.testfx.service.finder org.testfx.service.finder.impl org.testfx.service.query org.testfx.service.query.impl -
-
Uses of NodeQuery in org.testfx.api
Methods in org.testfx.api that return NodeQuery Modifier and Type Method Description NodeQueryFxRobot. from(Collection<Node> parentNodes)NodeQueryFxRobot. from(Node... parentNodes)NodeQueryFxRobot. from(NodeQuery nodeQuery)NodeQueryFxRobotInterface. from(Collection<Node> parentNodes)CallsNodeFinder.from(Collection)and returns itself for method chaining.NodeQueryFxRobotInterface. from(Node... parentNodes)CallsNodeFinder.from(Node...)and returns itself for method chaining.NodeQueryFxRobotInterface. from(NodeQuery nodeQuery)Convenience method: CallsNodeFinder.from(NodeQuery)and returns itself for method chaining.NodeQueryFxRobot. fromAll()NodeQueryFxRobotInterface. fromAll()CallsNodeFinder.fromAll()and returns itself for method chaining.NodeQueryFxRobot. lookup(String query)<T extends Node>
NodeQueryFxRobot. lookup(Predicate<T> predicate)<T extends Node>
NodeQueryFxRobot. lookup(org.hamcrest.Matcher<T> matcher)NodeQueryFxRobotInterface. lookup(String query)Convenience method: CallsNodeFinder.lookup(String)and returns itself for method chaining.<T extends Node>
NodeQueryFxRobotInterface. lookup(Predicate<T> predicate)Convenience method: CallsNodeFinder.lookup(Predicate)and returns itself for method chaining.<T extends Node>
NodeQueryFxRobotInterface. lookup(org.hamcrest.Matcher<T> matcher)Convenience method: CallsNodeFinder.lookup(Matcher)and returns itself for method chaining.Methods in org.testfx.api with parameters of type NodeQuery Modifier and Type Method Description NodeQueryFxRobot. from(NodeQuery nodeQuery)NodeQueryFxRobotInterface. from(NodeQuery nodeQuery)Convenience method: CallsNodeFinder.from(NodeQuery)and returns itself for method chaining.static <T extends Node>
voidFxAssert. verifyThat(NodeQuery nodeQuery, Predicate<T> nodePredicate)static <T extends Node>
voidFxAssert. verifyThat(NodeQuery nodeQuery, Predicate<T> nodePredicate, Function<StringBuilder,StringBuilder> errorMessageMapper)static <T extends Node>
voidFxAssert. verifyThat(NodeQuery nodeQuery, org.hamcrest.Matcher<T> nodeMatcher)static <T extends Node>
voidFxAssert. verifyThat(NodeQuery nodeQuery, org.hamcrest.Matcher<T> nodeMatcher, Function<StringBuilder,StringBuilder> errorMessageMapper)static <T extends Node>
voidFxAssert. verifyThatIter(NodeQuery nodeQuery, org.hamcrest.Matcher<Iterable<T>> nodesMatcher)static <T extends Node>
voidFxAssert. verifyThatIter(NodeQuery nodeQuery, org.hamcrest.Matcher<Iterable<T>> nodesMatcher, Function<StringBuilder,StringBuilder> errorMessageMapper) -
Uses of NodeQuery in org.testfx.service.finder
Methods in org.testfx.service.finder that return NodeQuery Modifier and Type Method Description NodeQueryNodeFinder. from(Collection<Node> parentNodes)Returns aNodeQuerythat stores the given parentNodes collection.NodeQueryNodeFinder. from(Node... parentNodes)Returns aNodeQuerythat stores the given parentNodesNodeQueryNodeFinder. from(NodeQuery nodeQuery)Returns a newNodeQuerythat stores all the parentNodes from the given nodeQuery (essentially, it creates a copy/clone).NodeQueryNodeFinder. fromAll()Returns aNodeQuerythat stores all the root nodes of all windows viaWindowFinder.listTargetWindows()NodeQueryNodeFinder. lookup(String query)Returns aNodeQuerythat stores all the root nodes that meet the given query<T extends Node>
NodeQueryNodeFinder. lookup(Predicate<T> predicate)Returns aNodeQuerythat stores all the root nodes that pass the given predicate<T> NodeQueryNodeFinder. lookup(org.hamcrest.Matcher<T> matcher)Returns aNodeQuerythat stores all the root nodes that match the given matcher.Methods in org.testfx.service.finder with parameters of type NodeQuery Modifier and Type Method Description NodeQueryNodeFinder. from(NodeQuery nodeQuery)Returns a newNodeQuerythat stores all the parentNodes from the given nodeQuery (essentially, it creates a copy/clone). -
Uses of NodeQuery in org.testfx.service.finder.impl
Methods in org.testfx.service.finder.impl that return NodeQuery Modifier and Type Method Description NodeQueryNodeFinderImpl. from(Collection<Node> parentNodes)NodeQueryNodeFinderImpl. from(Node... parentNodes)NodeQueryNodeFinderImpl. from(NodeQuery nodeQuery)NodeQueryNodeFinderImpl. fromAll()NodeQueryNodeFinderImpl. lookup(String query)<T extends Node>
NodeQueryNodeFinderImpl. lookup(Predicate<T> predicate)<T> NodeQueryNodeFinderImpl. lookup(org.hamcrest.Matcher<T> matcher)Methods in org.testfx.service.finder.impl with parameters of type NodeQuery Modifier and Type Method Description NodeQueryNodeFinderImpl. from(NodeQuery nodeQuery) -
Uses of NodeQuery in org.testfx.service.query
Methods in org.testfx.service.query that return NodeQuery Modifier and Type Method Description NodeQueryNodeQuery. from(Collection<Node> parentNodes)Stores all givenparentNodeswithin this NodeQuery.NodeQueryNodeQuery. from(Node... parentNodes)Stores all givenparentNodeswithin this NodeQuery.NodeQueryNodeQuery. lookup(String query)Sifts through stored nodes by their id ("#id"), their class (".class"), or the text it has ("text"), depending on the query used, and keeps only thoseNodes that meet the query.NodeQueryNodeQuery. lookup(Function<Node,Set<Node>> function)Sifts through stored nodes and usesfunctionto determine which nodes to keep and which to remove.<T extends Node>
NodeQueryNodeQuery. lookup(Predicate<T> predicate)Sifts through stored nodes and keeps only thoseNodes that pass the givenpredicate.<T> NodeQueryNodeQuery. lookup(org.hamcrest.Matcher<T> matcher)Sifts through stored nodes and keeps only thoseNodes that match the given matcher.<T extends Node>
NodeQueryNodeQuery. match(Predicate<T> predicate)Sifts through stored nodes and keeps only thoseNodes that pass the given predicate.<T> NodeQueryNodeQuery. match(org.hamcrest.Matcher<T> matcher)Sifts through stored nodes and keeps only thoseNodes that match the given matcher.NodeQueryNodeQuery. nth(int index)Keeps the nthNodein stored nodes and removes all others. -
Uses of NodeQuery in org.testfx.service.query.impl
Classes in org.testfx.service.query.impl that implement NodeQuery Modifier and Type Class Description classNodeQueryImplMethods in org.testfx.service.query.impl that return NodeQuery Modifier and Type Method Description NodeQueryNodeQueryImpl. from(Collection<Node> parentNodes)NodeQueryNodeQueryImpl. from(Node... parentNodes)NodeQueryNodeQueryImpl. lookup(String query)NodeQueryNodeQueryImpl. lookup(Function<Node,Set<Node>> function)<T extends Node>
NodeQueryNodeQueryImpl. lookup(Predicate<T> predicate)<T> NodeQueryNodeQueryImpl. lookup(org.hamcrest.Matcher<T> matcher)<T extends Node>
NodeQueryNodeQueryImpl. match(Predicate<T> predicate)<T> NodeQueryNodeQueryImpl. match(org.hamcrest.Matcher<T> matcher)NodeQueryNodeQueryImpl. nth(int index)
-