Class Line

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class is designed to represent structural or decorative line elements in a user interface. It encapsulates behaviors and attributes specific to line elements, enabling standardized interaction and representation in automated testing or UI frameworks.

Features:

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

Purpose:

  • Standardizes the interaction with line elements in the UI.
  • Streamlines the creation and manipulation of `Line` objects in test or automation code.

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a line using a Selenide locator
 Line line = $line("div.line-class");

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

    • Line

      public Line()
    • Line

      public Line(String selenideLocator)
    • Line

      public Line(String selenideLocator, String name)
    • Line

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

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

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

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

    • $line

      public static Line $line(org.openqa.selenium.By locator)
    • $line

      public static Line $line(org.openqa.selenium.By locator, String name)
    • $line

      public static Line $line(com.codeborne.selenide.SelenideElement selenideElement)
    • $line

      public static Line $line(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $line

      public static Line $line(String selenideLocator)
    • $line

      public static Line $line(String selenideLocator, String name)
    • _$line

      public static Line _$line(String xpath)