Package allurium.inputs
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
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
}
-
Field Summary
Fields inherited from class allurium.primitives.UIElement
assignNameMethod, description, id, parent, root, stepsConsoleLoggingEnabled, stepsReportLoggingEnabled, uiElementName, uiElementType
-
Constructor Summary
ConstructorsModifierConstructorDescriptionDefault constructor.AbstractInputElement
(com.codeborne.selenide.SelenideElement selenideElement) Initializes an input element using aSelenideElement
.protected
AbstractInputElement
(com.codeborne.selenide.SelenideElement selenideElement, String name) Initializes an input element using aSelenideElement
and a name.protected
AbstractInputElement
(String selenideLocator) Initializes an input element using a Selenide locator string.protected
AbstractInputElement
(String selenideLocator, String name) Initializes an input element using a Selenide locator string and a name.protected
AbstractInputElement
(org.openqa.selenium.By locator) Initializes an input element using a SeleniumBy
locator.protected
AbstractInputElement
(org.openqa.selenium.By locator, String name) Initializes an input element using a SeleniumBy
locator and a name. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Asserts that the element is disabled.void
Asserts that the element is enabled.boolean
Checks if the input element is disabled.Methods inherited from class allurium.primitives.UIElement
_$uiElement, $uiElement, $uiElement, $uiElement, $uiElement, $uiElement, $uiElement, applyName, applyName, as, assertEmpty, assertEquals, assertExists, assertExists, assertHasCssClass, assertHasCssClass, assertHasNotCssClass, assertHasNotCssClass, assertHasNotCssClass, assertHasText, assertIsNotEmpty, assertNotExist, assertNotExist, assertNotVisible, assertNotVisible, assertNotVisible, assertText, assertVisible, assertVisible, assertVisible, assertVisible, assertVisibleInViewport, click, click, click, click, click, clickAndHold, clickAndHold, clickAndHold, contextClick, contextClick, contextClick, doubleClick, doubleClick, doubleClick, get, getAllureCompiledStep, getAttribute, getHeight, getId, getStepText, getUiElementName, getWidth, hover, hover, hover, isDisplayed, logStep, logStepToReport, logStepToReport, scrollTo, scrollTo, scrollTo, setRoot, setRoot, text, verifyEmpty, verifyIsNotEmpty, wrappedName
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface allurium.interfaces.AlluriumElement
getRoot
Methods inherited from interface allurium.interfaces.WebElementMeta
getDescription, getMetaKeys, getParent, setAssignNameMethod, setDescription, setParent, setUiElementName
-
Constructor Details
-
AbstractInputElement
public AbstractInputElement()Default constructor. -
AbstractInputElement
Initializes an input element using a Selenide locator string.- Parameters:
selenideLocator
- the Selenide locator as a string
-
AbstractInputElement
Initializes an input element using a Selenide locator string and a name.- Parameters:
selenideLocator
- the Selenide locator as a stringname
- the name of the input element
-
AbstractInputElement
protected AbstractInputElement(org.openqa.selenium.By locator) Initializes an input element using a SeleniumBy
locator.- Parameters:
locator
- the Selenium locator
-
AbstractInputElement
Initializes an input element using a SeleniumBy
locator and a name.- Parameters:
locator
- the Selenium locatorname
- the name of the input element
-
AbstractInputElement
public AbstractInputElement(com.codeborne.selenide.SelenideElement selenideElement) Initializes an input element using aSelenideElement
.- Parameters:
selenideElement
- the Selenide element
-
AbstractInputElement
Initializes an input element using aSelenideElement
and a name.- Parameters:
selenideElement
- the Selenide elementname
- the name of the input element
-
-
Method Details
-
isDisabled
public boolean isDisabled()Checks if the input element is disabled.- Specified by:
isDisabled
in interfaceInputElement
- 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
-