You're viewing an older version of Vaadin JavaDoc. Please see version 24.7.0 for the latest.
com.vaadin.flow.component.tabs.

Class TabsTester<T extends Tabs>

java.lang.Object
com.vaadin.testbench.unit.ComponentTester<T>
com.vaadin.flow.component.tabs.TabsTester<T>

Type Parameters:

T - component type

public class TabsTester<T extends Tabs> extends ComponentTester<T>

Tester for Tabs components.

  • Constructor Details

    • TabsTester

      public TabsTester(T component)

      Wrap given component for testing.

      Parameters:

      component - target component

  • Method Details

    • select

      public void select(String label)

      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

      public boolean isSelected(String label)

      Checks if the tab with the given label is currently selected.

      Parameters:

      label - the tab label

      Returns:

      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 tab

      Returns:

      true if the tab is selected, false otherwise.

    • getTab

      public Tab getTab(String label)

      Gets the visible tab with the given label.

      Parameters:

      label - the tab label

      Throws:

      IllegalStateException - if tab is not visible

    • getTab

      public Tab getTab(int index)

      Gets the visible tab at given index.

      Parameters:

      index - the zero-based index of the selected tab, negative value to unselect

      Throws:

      IllegalStateException - if tab is not visible