Package allurium.interfaces
Interface RequiredInput
- All Superinterfaces:
InputElement
- All Known Implementing Classes:
AbstractRequiredTextArea
,AbstractRequiredTextField
Interface for UI elements that represent required inputs.
This interface provides methods for determining and asserting the "required" state of an input field.
Features:
- Defines a contract for checking if an input is marked as required using
isMarked()
. - Includes assertions for the required state of the input:
assertMarkedAsRequired()
to ensure the input is marked as required.assertNotMarkedAsRequired()
to ensure the input is not marked as required.
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 TypeMethodDescriptionvoid
Asserts that the input is marked as required.void
Asserts that the input is not marked as required.boolean
isMarked()
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.
-