Interface RequiredInput

All Superinterfaces:
InputElement
All Known Implementing Classes:
AbstractRequiredTextArea, AbstractRequiredTextField

public interface RequiredInput extends InputElement
Interface for UI elements that represent required inputs.

This interface provides methods for determining and asserting the "required" state of an input field.

Features:

Purpose:

  • Standardizes the handling of "required" state functionality across different input types.
  • Ensures consistency and clarity when interacting with required input fields in tests.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Asserts that the input is marked as required.
    void
    Asserts that the input is not marked as required.
    boolean
    Checks if the input is marked as required.

    Methods inherited from interface allurium.interfaces.InputElement

    isDisabled
  • Method Details

    • isMarked

      boolean isMarked()
      Checks if the input is marked as required.
      Returns:
      true if the input is marked as required, false otherwise
    • assertMarkedAsRequired

      void assertMarkedAsRequired()
      Asserts that the input is marked as required.

      This method ensures that the required indicator is present.

    • assertNotMarkedAsRequired

      void assertNotMarkedAsRequired()
      Asserts that the input is not marked as required.

      This method ensures that the required indicator is absent.