Interface NavigatorCondition
- All Known Implementing Classes:
AssigneeCondition,ComponentCondition,GenericQueryCondition,IssueTypeCondition,MultiSelectCondition,PriorityCondition,ProjectCondition,QuerySearchCondition,ReporterCondition,ResolutionCondition,StatusCondition,UserGroupPicker,VersionCondition
public interface NavigatorCondition
Represents a condition in a Navigator Search.
- Since:
- v3.13
-
Method Summary
Modifier and TypeMethodDescriptionvoidassertSettings(org.jsoup.nodes.Document document) Assert that the condition is corrected configured for the passed tester.voidparseCondition(net.sourceforge.jwebunit.WebTester tester) Get the condition as configured on the web page.
-
Method Details
-
parseCondition
void parseCondition(net.sourceforge.jwebunit.WebTester tester) Get the condition as configured on the web page. The tester will be on the Navigator page when called.- Parameters:
tester- the tester pointed at the Navigator page.
-
assertSettings
void assertSettings(org.jsoup.nodes.Document document) Assert that the condition is corrected configured for the passed tester. The tester must be on the Navigator page when called.- Parameters:
document- the tester pointed at the Navigator page.
-
copyCondition
NavigatorCondition copyCondition()- Returns:
- a copy of the condition.
-
copyConditionForParse
NavigatorCondition copyConditionForParse()- Returns:
- a clean copy of the condition.
-