com.vaadin.flow.component.tabs.
Class TabsTester<T extends Tabs>
Type Parameters:
T
- component type
Tester for Tabs components.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetTab
(int index) Gets the visible tab at given index.
Gets the visible tab with the given label.
boolean
isSelected
(int index) Checks if the tab at the given index is currently selected.
boolean
isSelected
(String label) Checks if the tab with the given label is currently selected.
void
select
(int index) Selects a tab based on its zero-based index.
void
Selects the tab with the given label.
Methods inherited from class com.vaadin.testbench.unit.ComponentTester
ensureComponentIsUsable, ensureVisible, find, findAllByQuery, findByQuery, fireDomEvent, fireDomEvent, fireDomEvent, getComponent, getField, getField, getMethod, getMethod, isUsable, notUsableReasons, roundTrip, setModal
-
Constructor Details
-
TabsTester
Wrap given component for testing.
Parameters:
component
- target component
-
-
Method Details
-
select
Selects the tab with the given label.
Parameters:
label
- the tab label -
select
public void select(int index) Selects a tab based on its zero-based index.
Parameters:
index
- the zero-based index of the selected tab, negative value to unselect -
isSelected
Checks if the tab with the given label is currently selected.
Parameters:
label
- the tab labelReturns:
true if the tab is selected, false otherwise.
-
isSelected
public boolean isSelected(int index) Checks if the tab at the given index is currently selected.
Parameters:
index
- the zero-based index of the tabReturns:
true if the tab is selected, false otherwise.
-
getTab
Gets the visible tab with the given label.
Parameters:
label
- the tab labelThrows:
IllegalStateException
- if tab is not visible -
getTab
Gets the visible tab at given index.
Parameters:
index
- the zero-based index of the selected tab, negative value to unselectThrows:
IllegalStateException
- if tab is not visible
-