Class Tab

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

public class Tab extends UIElement
Represents a `Tab` element in the UI, extending UIElement.

This class encapsulates the behavior and attributes of a tab component in a user interface, commonly used for navigation or organizing content into sections.

Features:

  • Encapsulates behavior and attributes of a `Tab` element.
  • Provides multiple constructors for flexible initialization using:
    • Selenide locators as strings
    • Selenium By locators
    • SelenideElement instances
  • Includes static factory methods for convenient creation of `Tab` instances.

Purpose:

  • Standardizes interaction with tab elements in the UI.
  • Simplifies the creation and management of tab components in tests.

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a tab using a Selenide locator
 Tab tab = $tab(".tab-class");

 // Creating a tab with a custom name
 Tab namedTab = $tab(By.cssSelector(".tab-class"), "Settings Tab");
 
 
  • Constructor Details

    • Tab

      public Tab()
      Default constructor. Initializes the element type as "tab".
    • Tab

      public Tab(String selenideLocator)
      Constructor that initializes a `Tab` using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
    • Tab

      public Tab(String selenideLocator, String name)
      Constructor that initializes a `Tab` using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the tab
    • Tab

      public Tab(org.openqa.selenium.By locator)
      Constructor that initializes a `Tab` using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the tab
    • Tab

      public Tab(org.openqa.selenium.By locator, String name)
      Constructor that initializes a `Tab` using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator for the tab
      name - the name of the tab
    • Tab

      public Tab(com.codeborne.selenide.SelenideElement selenideElement)
      Constructor that initializes a `Tab` using a SelenideElement.
      Parameters:
      selenideElement - the Selenide element representing the tab
    • Tab

      public Tab(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Constructor that initializes a `Tab` using a SelenideElement and a name.
      Parameters:
      selenideElement - the Selenide element representing the tab
      name - the name of the tab
  • Method Details

    • $tab

      public static Tab $tab(org.openqa.selenium.By locator)
    • $tab

      public static Tab $tab(com.codeborne.selenide.SelenideElement selenideElement)
    • $tab

      public static Tab $tab(String selenideLocator)
    • $tab

      public static Tab $tab(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $tab

      public static Tab $tab(org.openqa.selenium.By locator, String name)
    • $tab

      public static Tab $tab(String selenideLocator, String name)
    • _$tab

      public static Tab _$tab(String xpath)