Class Label

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class encapsulates the behavior and attributes of a label element, typically used to display non-interactive text in the UI.

Features:

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

Purpose:

  • Standardizes the interaction with label elements in the UI.
  • Simplifies the creation of `Label` objects using various initialization methods.

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a label using a Selenide locator
 Label label = $label("label.class");

 // Creating a label using a Selenium locator and a custom name
 Label namedLabel = $label(By.cssSelector(".label-class"), "Custom Label");
 
 
  • Constructor Details

    • Label

      public Label()
    • Label

      public Label(String selenideLocator)
    • Label

      public Label(String selenideLocator, String name)
    • Label

      public Label(org.openqa.selenium.By locator)
    • Label

      public Label(org.openqa.selenium.By locator, String name)
    • Label

      public Label(com.codeborne.selenide.SelenideElement selenideElement)
    • Label

      public Label(com.codeborne.selenide.SelenideElement selenideElement, String name)
  • Method Details

    • $label

      public static Label $label(org.openqa.selenium.By locator)
    • $label

      public static Label $label(com.codeborne.selenide.SelenideElement selenideElement)
    • $label

      public static Label $label(String selenideLocator)
    • $label

      public static Label $label(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $label

      public static Label $label(org.openqa.selenium.By locator, String name)
    • $label

      public static Label $label(String selenideLocator, String name)
    • _$label

      public static Label _$label(String xpath)