Class Row

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class encapsulates the behavior and attributes of a row element, commonly used in tables, grids, or list-based UI components.

Features:

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

Purpose:

  • Standardizes interactions with row elements in UI components.
  • Simplifies the creation and management of rows in tests.

Constructors:

Static Factory Methods:

Usage Example:

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

 // Creating a row using a Selenium locator and assigning a custom name
 Row namedRow = $row(By.cssSelector(".row-class"), "Custom Row");
 
 
  • Constructor Details

    • Row

      public Row()
      Default constructor. Initializes the element type as "row".
    • Row

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

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

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

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

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

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

    • $row

      public static Row $row(org.openqa.selenium.By locator)
    • $row

      public static Row $row(com.codeborne.selenide.SelenideElement selenideElement)
    • $row

      public static Row $row(String selenideLocator)
    • $row

      public static Row $row(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $row

      public static Row $row(org.openqa.selenium.By locator, String name)
    • $row

      public static Row $row(String selenideLocator, String name)
    • _$row

      public static Row _$row(String xpath)