Class Text

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class encapsulates the behavior and attributes of a text-based UI component, such as paragraphs, labels, or any element containing textual content.

Features:

  • Encapsulates behavior and attributes of a `Text` 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 `Text` instances.
  • Overrides `toString` and `getId` methods to return the element's name.

Purpose:

  • Standardizes interaction with text elements in the UI.
  • Simplifies the creation and validation of text-based elements in tests.

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a text element using a Selenide locator
 Text textElement = $text(".text-class");

 // Creating a text element with a custom name
 Text namedText = $text(By.cssSelector(".text-class"), "Description");

 // Getting the text element's name or ID
 String textName = namedText.getId();
 
 
  • Constructor Details

    • Text

      public Text()
      Default constructor. Initializes the element type as "text".
    • Text

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

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

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

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

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

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

    • $text

      public static Text $text(org.openqa.selenium.By locator)
    • $text

      public static Text $text(org.openqa.selenium.By locator, String name)
    • $text

      public static Text $text(com.codeborne.selenide.SelenideElement selenideElement)
    • $text

      public static Text $text(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $text

      public static Text $text(String selenideLocator)
    • $text

      public static Text $text(String selenideLocator, String name)
    • _$text

      public static Text _$text(String xpath)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getId

      public String getId()
      Description copied from class: UIElement
      Retrieves the unique identifier of the element.
      Specified by:
      getId in interface ListComponent
      Overrides:
      getId in class UIElement
      Returns:
      the ID if explicitly set; otherwise, the text content of the root element