Class Symbol

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class encapsulates the behavior and attributes of a symbol element, which is often used to display icons, special characters, or graphical representations in a user interface.

Features:

  • Encapsulates behavior and attributes of a `Symbol` element.
  • Supports multiple initialization methods through constructors and static factory methods.
  • Extends UIElement to provide generic interaction capabilities.

Purpose:

  • Standardizes interactions with symbol elements in the UI.
  • Simplifies the creation and management of symbol elements in tests.

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a symbol using a Selenide locator
 Symbol symbol = $symbol("span.icon-class");

 // Creating a symbol using a Selenium locator and assigning a custom name
 Symbol namedSymbol = $symbol(By.cssSelector(".icon-class"), "Custom Icon");
 
 
  • Constructor Details

    • Symbol

      public Symbol()
      Default constructor. Initializes the element type as "symbol".
    • Symbol

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

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

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

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

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

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

    • $symbol

      public static Symbol $symbol(org.openqa.selenium.By locator)
    • $symbol

      public static Symbol $symbol(com.codeborne.selenide.SelenideElement selenideElement)
    • $symbol

      public static Symbol $symbol(String selenideLocator)
    • $symbol

      public static Symbol $symbol(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $symbol

      public static Symbol $symbol(org.openqa.selenium.By locator, String name)
    • $symbol

      public static Symbol $symbol(String selenideLocator, String name)
    • _$symbol

      public static Symbol _$symbol(String xpath)