com.atlassian.jira.webtest.framework.page.issuenavigator
Interface SimpleSearchFilter

All Superinterfaces:
Collapsible<SimpleSearchFilter>, Component<IssueNavigator>, PageObject, PageSection<IssueNavigator>
All Known Implementing Classes:
SeleniumSimpleSearchFilter

public interface SimpleSearchFilter
extends PageSection<IssueNavigator>, Collapsible<SimpleSearchFilter>

Represents the simple search filter on the issue navigator page. This is collapsible the search form on the left side of the issue navigator page used to enter traditional form-based search queries.

Since:
v4.3

Method Summary
 TimedCondition allSectionsCollapsed()
           Timed condition checking, whether all sections of this filter are collapsed.
 TimedCondition allSectionsExpanded()
          Timed condition checking, whether all sections of this filter are expanded.
 SimpleSearchFilter collapseAllSections()
          Collapse all sections of this search filter.
 SimpleSearchFilter expandAllSections()
          Expand all sections of this search filter.
<S extends SimpleSearchFilterSection<S>>
S
section(Class<S> sectionType)
          Get section of given type.
 
Methods inherited from interface com.atlassian.jira.webtest.framework.page.PageSection
page
 
Methods inherited from interface com.atlassian.jira.webtest.framework.core.component.Component
parent
 
Methods inherited from interface com.atlassian.jira.webtest.framework.core.PageObject
context, isReady
 
Methods inherited from interface com.atlassian.jira.webtest.framework.core.Collapsible
collapse, expand, isCollapsed, isExpanded
 

Method Detail

section

<S extends SimpleSearchFilterSection<S>> S section(Class<S> sectionType)
Get section of given type.

Type Parameters:
S - section type param
Parameters:
sectionType - section type
Returns:
section instance

allSectionsExpanded

TimedCondition allSectionsExpanded()
Timed condition checking, whether all sections of this filter are expanded. NOTE: this condition will also return false, if Collapsible.isExpanded() ()} returns false, i.e. no section is considered expanded, if this filter is not expanded.

Returns:
condition that will return true, if all sections of this filter are expanded

allSectionsCollapsed

TimedCondition allSectionsCollapsed()

Timed condition checking, whether all sections of this filter are collapsed.

NOTE: this condition will also return true, if Collapsible.isCollapsed() returns true, i.e. all sections are considered collapsed, if this filter is collapsed.

Returns:
condition that will return true, if all sections of this filter are collapsed

expandAllSections

SimpleSearchFilter expandAllSections()
Expand all sections of this search filter.

Returns:
this filter instance

collapseAllSections

SimpleSearchFilter collapseAllSections()
Collapse all sections of this search filter.

Returns:
this filter instance


Copyright © 2002-2012 Atlassian. All Rights Reserved.