Class AbstractForm

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

public abstract class AbstractForm extends AbstractWidget
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 {
  • 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 a SelenideElement.
      Parameters:
      rootElement - the Selenide element representing the form
    • AbstractForm

      public AbstractForm(String selenideLocator)
      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 Selenium By 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