Class AbstractRequiredTextArea

All Implemented Interfaces:
AlluriumElement, InputElement, ListComponent, RequiredInput, TextInputAsserts, WebElementMeta, Writable

public abstract class AbstractRequiredTextArea extends TextArea implements RequiredInput
Represents an abstract class for a required text area in the UI, extending TextArea.

This class implements the RequiredInput interface, adding functionality specific to required text areas, such as methods to check if the field is marked as required and assert its state. It also includes utility methods to verify if an error message is displayed.

Features:

  • Implements RequiredInput for standardized handling of required fields.
  • Checks for required field indicators using isMarked().
  • Assertions to validate the required state of the text area:
  • Designed for extension to implement specific behaviors of required text areas.

Purpose:

  • Encapsulates behavior specific to required text areas.
  • Provides utility methods for asserting required field states and error indicators in tests.
  • Constructor Details

    • AbstractRequiredTextArea

      public AbstractRequiredTextArea()
      Default constructor. Initializes the element type as "textarea_required".
    • AbstractRequiredTextArea

      public AbstractRequiredTextArea(org.openqa.selenium.By rootLocator)
      Constructor that initializes a required text area using a Selenium By locator.
      Parameters:
      rootLocator - the Selenium locator for the required text area
    • AbstractRequiredTextArea

      public AbstractRequiredTextArea(org.openqa.selenium.By rootLocator, String name)
      Constructor that initializes a required text area using a Selenium By locator and a name.
      Parameters:
      rootLocator - the Selenium locator for the required text area
      name - the name of the required text area
    • AbstractRequiredTextArea

      public AbstractRequiredTextArea(String selenideLocator)
      Constructor that initializes a required text area using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
    • AbstractRequiredTextArea

      public AbstractRequiredTextArea(String selenideLocator, String name)
      Constructor that initializes a required text area using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the required text area
    • AbstractRequiredTextArea

      public AbstractRequiredTextArea(com.codeborne.selenide.SelenideElement selenideElement)
      Constructor that initializes a required text area using a Selenide element.
      Parameters:
      selenideElement - the Selenide element representing the required text area
    • AbstractRequiredTextArea

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

    • isErrorMessageShown

      public abstract boolean isErrorMessageShown()
      Checks if an error message is shown for the required text area.
      Returns:
      true if an error message is displayed, false otherwise
    • isMarked

      public abstract boolean isMarked()
      Checks if the text area is marked as required.
      Specified by:
      isMarked in interface RequiredInput
      Returns:
      true if the field is marked as required, false otherwise
    • assertMarkedAsRequired

      public void assertMarkedAsRequired()
      Asserts that the text area is marked as required.

      = Step: Processed by Aspect =

      Specified by:
      assertMarkedAsRequired in interface RequiredInput
    • assertNotMarkedAsRequired

      public void assertNotMarkedAsRequired()
      Asserts that the text area is not marked as required.

      = Step: Processed by Aspect =

      Specified by:
      assertNotMarkedAsRequired in interface RequiredInput