Class Title

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class encapsulates the behavior and attributes of a title element, such as headers or text elements that act as titles in the UI (e.g., `

`, `

`). It provides constructors and factory methods for creating and interacting with title elements.

Features:

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

Purpose:

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

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a title using a Selenide locator
 Title title = $title("h1.page-title");

 // Creating a title with a custom name
 Title namedTitle = $title(By.cssSelector("h1.page-title"), "Main Page Title");
 
 
  • Constructor Details

    • Title

      public Title()
      Default constructor. Initializes the element type as "title".
    • Title

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

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

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

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

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

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

    • $title

      public static Title $title(org.openqa.selenium.By locator)
    • $title

      public static Title $title(org.openqa.selenium.By locator, String name)
    • $title

      public static Title $title(com.codeborne.selenide.SelenideElement selenideElement)
    • $title

      public static Title $title(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $title

      public static Title $title(String selenideLocator)
    • $title

      public static Title $title(String selenideLocator, String name)
    • _$title

      public static Title _$title(String xpath)