Class TextLine

java.lang.Object
allurium.primitives.UIElement
allurium.primitives.TextLine
All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

public class TextLine extends UIElement
Represents a single-line text element in the UI, extending UIElement.

This class encapsulates the behavior and attributes of a single-line text-based UI component, such as labels, input hints, or other single-line text elements.

Features:

  • Encapsulates behavior and attributes of a single-line 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 `TextLine` instances.

Purpose:

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

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a text line using a Selenide locator
 TextLine textLine = $textLine(".text-line-class");

 // Creating a text line with a custom name
 TextLine namedTextLine = $textLine(By.cssSelector(".text-line-class"), "Header Text");
 
 
  • Constructor Details

    • TextLine

      public TextLine()
      Default constructor. Initializes the element type as "string".
    • TextLine

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

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

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

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

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

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

    • $textLine

      public static TextLine $textLine(org.openqa.selenium.By locator)
    • $textLine

      public static TextLine $textLine(org.openqa.selenium.By locator, String name)
    • $textLine

      public static TextLine $textLine(com.codeborne.selenide.SelenideElement selenideElement)
    • $textLine

      public static TextLine $textLine(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $textLine

      public static TextLine $textLine(String selenideLocator)
    • $textLine

      public static TextLine $textLine(String selenideLocator, String name)
    • _$textLine

      public static TextLine _$textLine(String xpath)