Package allurium.forms
Class AbstractForm
java.lang.Object
allurium.primitives.UIElement
allurium.AbstractWidget
allurium.forms.AbstractForm
- All Implemented Interfaces:
AlluriumElement
,ListComponent
,WebElementMeta
Represents the base class for form elements in a UI, extending
AbstractWidget
.
This class provides the foundation for creating form-related UI components and encapsulates common behavior, such as initialization using various locator types. It also defines an abstract `submit` method for implementing form submission functionality.
Features:
- Encapsulates behavior specific to form elements.
- Supports initialization using locators or
SelenideElement
objects. - Defines an abstract method for custom form submission behavior.
- Integrates with aspects for monitoring submission behavior.
Purpose:
- Serves as a base class for implementing specific form components.
- Standardizes form behavior across different test cases or components.
Usage:
Extend this class to implement custom forms in your application.
public class LoginForm extends AbstractForm {
-
Field Summary
Fields inherited from class allurium.primitives.UIElement
assignNameMethod, description, id, parent, root, stepsConsoleLoggingEnabled, stepsReportLoggingEnabled, uiElementName, uiElementType
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.AbstractForm
(com.codeborne.selenide.SelenideElement rootElement) Constructor that initializes the form using aSelenideElement
.AbstractForm
(String selenideLocator) Constructor that initializes the form using a Selenide locator string.AbstractForm
(org.openqa.selenium.By locator) Constructor that initializes the form using a SeleniumBy
locator. -
Method Summary
Methods inherited from class allurium.AbstractWidget
getHeight, getRoot, getWidth, setRoot
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, getId, getStepText, getUiElementName, hover, hover, hover, isDisplayed, logStep, logStepToReport, logStepToReport, scrollTo, scrollTo, scrollTo, 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.WebElementMeta
getDescription, getMetaKeys, getParent, setAssignNameMethod, setDescription, setParent, setUiElementName
-
Constructor Details
-
AbstractForm
public AbstractForm()Default constructor. Initializes the element type as "form". -
AbstractForm
public AbstractForm(com.codeborne.selenide.SelenideElement rootElement) Constructor that initializes the form using aSelenideElement
.- Parameters:
rootElement
- the Selenide element representing the form
-
AbstractForm
Constructor that initializes the form using a Selenide locator string.- Parameters:
selenideLocator
- the Selenide locator as a string
-
AbstractForm
public AbstractForm(org.openqa.selenium.By locator) Constructor that initializes the form using a SeleniumBy
locator.- Parameters:
locator
- the Selenium locator for the form
-
-
Method Details
-
submit
public abstract void submit()Submits the form.This method must be overridden by subclasses to define custom form submission logic. It is also processed by aspects for monitoring submission actions.
Step: Processed by Aspect
-