Class AbstractInputElement

java.lang.Object
allurium.primitives.UIElement
allurium.inputs.AbstractInputElement
All Implemented Interfaces:
AlluriumElement, InputElement, ListComponent, WebElementMeta
Direct Known Subclasses:
Button, CheckBox, RadioButton, TextField

public class AbstractInputElement extends UIElement implements InputElement
Represents the base class for input elements in the UI, extending UIElement.

This abstract class provides a foundation for specialized input field implementations, such as text fields, checkboxes, and dropdowns. It includes utility methods for validating input field states, such as checking whether the field is enabled or disabled.

Features:

  • Base implementation for input elements.
  • Methods for checking and asserting the enabled or disabled state.

Purpose:

  • Encapsulates shared behavior for input elements.
  • Acts as a parent class for all input-specific components.

Usage Example:


 public class Checkbox extends AbstractInputElement {
     // Custom logic for checkboxes
 }
 
  • Constructor Details

    • AbstractInputElement

      public AbstractInputElement()
      Default constructor.
    • AbstractInputElement

      protected AbstractInputElement(String selenideLocator)
      Initializes an input element using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
    • AbstractInputElement

      protected AbstractInputElement(String selenideLocator, String name)
      Initializes an input element using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the input element
    • AbstractInputElement

      protected AbstractInputElement(org.openqa.selenium.By locator)
      Initializes an input element using a Selenium By locator.
      Parameters:
      locator - the Selenium locator
    • AbstractInputElement

      protected AbstractInputElement(org.openqa.selenium.By locator, String name)
      Initializes an input element using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator
      name - the name of the input element
    • AbstractInputElement

      public AbstractInputElement(com.codeborne.selenide.SelenideElement selenideElement)
      Initializes an input element using a SelenideElement.
      Parameters:
      selenideElement - the Selenide element
    • AbstractInputElement

      protected AbstractInputElement(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Initializes an input element using a SelenideElement and a name.
      Parameters:
      selenideElement - the Selenide element
      name - the name of the input element
  • Method Details

    • isDisabled

      public boolean isDisabled()
      Checks if the input element is disabled.
      Specified by:
      isDisabled in interface InputElement
      Returns:
      true if the element is disabled, false otherwise
    • assertEnabled

      public void assertEnabled()
      Asserts that the element is enabled.

      Step: Processed by Aspect

      Throws:
      AssertionError - if the input element is disabled
    • assertDisabled

      public void assertDisabled()
      Asserts that the element is disabled.

      Step: Processed by Aspect

      Throws:
      AssertionError - if the input element is enabled