Class Value

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class encapsulates the behavior and attributes of elements representing values or metrics in the UI, such as numerical displays, calculated values, or status indicators. It provides constructors and factory methods for creating and interacting with value elements.

Features:

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

Purpose:

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

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a value element using a Selenide locator
 Value value = $value(".value-display");

 // Creating a value element with a custom name
 Value namedValue = $value(By.cssSelector(".value-display"), "Total Value");
 
 
  • Constructor Details

    • Value

      public Value()
      Default constructor. Initializes the element type as "value".
    • Value

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

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

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

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

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

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

    • $value

      public static Value $value(org.openqa.selenium.By locator)
    • $value

      public static Value $value(com.codeborne.selenide.SelenideElement selenideElement)
    • $value

      public static Value $value(String selenideLocator)
    • $value

      public static Value $value(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $value

      public static Value $value(org.openqa.selenium.By locator, String name)
    • $value

      public static Value $value(String selenideLocator, String name)
    • _$value

      public static Value _$value(String xpath)