Uses of Class
org.apache.wicket.util.tester.TagTester
-
Packages that use TagTester Package Description org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. -
-
Uses of TagTester in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester that return TagTester Modifier and Type Method Description static TagTesterTagTester. createTagByAttribute(java.lang.String markup, java.lang.String attribute, java.lang.String value)Static factory method for creating aTagTesterbased on a tag found by an attribute with a specific value.static TagTesterTagTester. createTagByName(java.lang.String markup, java.lang.String tagName)Static factory method for creating aTagTesterbased on a tag name.TagTesterTagTester. getChild(java.lang.String tagName)Checks if the tag has a child with the giventagName.TagTesterTagTester. getChild(java.lang.String attribute, java.lang.String value)Gets a child tag for testing.TagTesterBaseWicketTester. getTagById(java.lang.String id)Retrieves aTagTesterbased on an DOM id.TagTesterBaseWicketTester. getTagByWicketId(java.lang.String wicketId)Retrieves aTagTesterbased on awicket:id.Methods in org.apache.wicket.util.tester that return types with arguments of type TagTester Modifier and Type Method Description static java.util.List<TagTester>TagTester. createTags(java.lang.String markup, java.util.function.Function<XmlTag,java.lang.Boolean> accept, boolean stopAfterFirst)static java.util.List<TagTester>TagTester. createTagsByAttribute(java.lang.String markup, java.lang.String attribute, java.lang.String value, boolean stopAfterFirst)Static factory method for creating aTagTesterbased on a tag found by an attribute with a specific value.java.util.List<TagTester>BaseWicketTester. getTagsByWicketId(java.lang.String wicketId)Modified version of BaseWicketTester#getTagByWicketId(String) that returns all matching tags instead of just the first.
-