Class Cell

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

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

This class provides specific functionality for managing cell elements in tables or grids, such as setting the element type to "cell" and offering utility methods for creating cell instances.

Purpose:

  • Encapsulates cell-specific behavior.
  • Provides utility methods for convenient creation and management of cell elements.
  • Constructor Details

    • Cell

      public Cell()
      Default constructor. Initializes the cell element type.
    • Cell

      protected Cell(String selenideLocator)
      Constructor that initializes a cell using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
    • Cell

      protected Cell(String selenideLocator, String name)
      Constructor that initializes a cell using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the cell
    • Cell

      protected Cell(org.openqa.selenium.By locator)
      Constructor that initializes a cell using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the cell
    • Cell

      protected Cell(org.openqa.selenium.By locator, String name)
      Constructor that initializes a cell using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator for the cell
      name - the name of the cell
    • Cell

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

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

    • $cell

      public static Cell $cell(org.openqa.selenium.By locator)
      Creates a cell using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the cell
      Returns:
      a new Cell instance
    • $cell

      public static Cell $cell(org.openqa.selenium.By locator, String name)
      Creates a cell using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator for the cell
      name - the name of the cell
      Returns:
      a new Cell instance
    • $cell

      public static Cell $cell(com.codeborne.selenide.SelenideElement selenideElement)
      Creates a cell using a Selenide element.
      Parameters:
      selenideElement - the Selenide element representing the cell
      Returns:
      a new Cell instance
    • $cell

      public static Cell $cell(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Creates a cell using a Selenide element and a name.
      Parameters:
      selenideElement - the Selenide element representing the cell
      name - the name of the cell
      Returns:
      a new Cell instance
    • $cell

      public static Cell $cell(String selenideLocator)
      Creates a cell using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
      Returns:
      a new Cell instance
    • $cell

      public static Cell $cell(String selenideLocator, String name)
      Creates a cell using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the cell
      Returns:
      a new Cell instance
    • _$cell

      public static Cell _$cell(String xpath)
      Creates a cell using an XPath string.
      Parameters:
      xpath - the XPath string for the cell
      Returns:
      a new Cell instance