Class Header

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class provides functionality for managing header elements in a webpage, such as setting the element type to "header" and offering utility methods for creating header instances.

Purpose:

  • Encapsulates header-specific behavior.
  • Provides utility methods for convenient creation and management of header elements.
  • Constructor Details

    • Header

      public Header()
      Default constructor. Initializes the header element type.
    • Header

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

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

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

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

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

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

    • $header

      public static Header $header(org.openqa.selenium.By locator)
      Creates a header using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the header
      Returns:
      a new Header instance
    • $header

      public static Header $header(com.codeborne.selenide.SelenideElement selenideElement)
      Creates a header using a Selenide element.
      Parameters:
      selenideElement - the Selenide element representing the header
      Returns:
      a new Header instance
    • $header

      public static Header $header(String selenideLocator)
      Creates a header using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
      Returns:
      a new Header instance
    • $header

      public static Header $header(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Creates a header using a Selenide element and a name.
      Parameters:
      selenideElement - the Selenide element representing the header
      name - the name of the header
      Returns:
      a new Header instance
    • $header

      public static Header $header(org.openqa.selenium.By locator, String name)
      Creates a header using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator for the header
      name - the name of the header
      Returns:
      a new Header instance
    • $header

      public static Header $header(String selenideLocator, String name)
      Creates a header using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the header
      Returns:
      a new Header instance
    • _$header

      public static Header _$header(String xpath)
      Creates a header using an XPath string.
      Parameters:
      xpath - the XPath string for the header
      Returns:
      a new Header instance