Class AccordionTester
-
- All Implemented Interfaces:
-
com.vaadin.browserless.Clickable
public class AccordionTester<T extends Accordion> extends ComponentTester<T>
- Since:
1.0
-
-
Constructor Summary
Constructors Constructor Description AccordionTester(T component)Wrap given component for testing.
-
Method Summary
Modifier and Type Method Description voidopenDetails(String summary)Open the accordion with the given summary. booleanisOpen(String summary)Check if accordion with the summary is open. AccordionPanelgetPanel(String summary)Get the panel with the summary. booleanhasPanel(String summary)Check if a panel for summary exists in accordion. -
Methods inherited from class com.vaadin.browserless.ComponentTester
ensureComponentIsUsable, find, getComponent, isUsable, setModal -
Methods inherited from class com.vaadin.browserless.Clickable
click, click, click, middleClick, middleClick, rightClick, rightClick -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
AccordionTester
AccordionTester(T component)
Wrap given component for testing.
- Parameters:
component- target component
-
-
Method Detail
-
openDetails
void openDetails(String summary)
Open the accordion with the given summary.
- Parameters:
summary- summary of accordion panel
-
isOpen
boolean isOpen(String summary)
Check if accordion with the summary is open.
- Parameters:
summary- summary of accordion panel- Returns:
trueif panel is open
-
getPanel
AccordionPanel getPanel(String summary)
Get the panel with the summary. Throws if panel is not open.
- Parameters:
summary- summary of accordion panel- Returns:
AccordionPanelfor the given summary
-
-
-
-