Class AbstractSwitcher

java.lang.Object
allurium.primitives.UIElement
allurium.switchers.AbstractSwitcher
All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

public abstract class AbstractSwitcher extends UIElement
Base class for implementing switcher elements in the UI, extending UIElement.

This abstract class provides a foundation for creating toggleable components such as switches, checkboxes, or other binary-state elements. It defines methods to query the current state and perform toggle or state-changing actions, while delegating specific behavior to subclasses.

Features:

  • Encapsulates common behaviors of switcher components.
  • Standardizes the interface for querying and modifying switcher states.
  • Supports Allure step logging for state-change actions.

Purpose:

  • Encourages consistent implementation of switcher-like components across the codebase.
  • Provides a reusable base for custom UI switcher elements.

Constructors:

Example Implementation:


 public class ButtonToggle extends AbstractSwitcher {

     public ButtonToggle(String selenideLocator) {
         super(selenideLocator);
     }
  • Constructor Details

    • AbstractSwitcher

      protected AbstractSwitcher()
      Default constructor. Initializes the element type as "switcher".
    • AbstractSwitcher

      protected AbstractSwitcher(String selenideLocator)
      Constructor that initializes a switcher using a Selenide locator string.
      Parameters:
      selenideLocator - the Selenide locator as a string
    • AbstractSwitcher

      protected AbstractSwitcher(String selenideLocator, String name)
      Constructor that initializes a switcher using a Selenide locator string and a name.
      Parameters:
      selenideLocator - the Selenide locator as a string
      name - the name of the switcher
    • AbstractSwitcher

      protected AbstractSwitcher(org.openqa.selenium.By locator)
      Constructor that initializes a switcher using a Selenium By locator.
      Parameters:
      locator - the Selenium locator for the switcher
    • AbstractSwitcher

      protected AbstractSwitcher(org.openqa.selenium.By locator, String name)
      Constructor that initializes a switcher using a Selenium By locator and a name.
      Parameters:
      locator - the Selenium locator for the switcher
      name - the name of the switcher
    • AbstractSwitcher

      public AbstractSwitcher(com.codeborne.selenide.SelenideElement selenideElement)
      Constructor that initializes a switcher using a Selenide element.
      Parameters:
      selenideElement - the Selenide element representing the switcher
    • AbstractSwitcher

      protected AbstractSwitcher(com.codeborne.selenide.SelenideElement selenideElement, String name)
      Constructor that initializes a switcher using a Selenide element and a name.
      Parameters:
      selenideElement - the Selenide element representing the switcher
      name - the name of the switcher
  • Method Details

    • getState

      public abstract boolean getState()
      Retrieves the current state of the switcher.

      Subclasses should implement this method to return whether the switcher is ON or OFF.

      Returns:
      true if the switcher is ON; false otherwise
    • toggle

      public abstract void toggle()
      Toggles the current state of the switcher.

      This method changes the state of the switcher from ON to OFF or vice versa. It should be implemented in subclasses.

      Step: Processed by Aspect

    • switchOn

      public abstract void switchOn()
      Sets the switcher state to ON.

      If the switcher is already ON, this method does nothing. Otherwise, it performs the necessary actions to turn the switcher ON.

      Step: Processed by Aspect

    • switchOff

      public abstract void switchOff()
      Sets the switcher state to OFF.

      If the switcher is already OFF, this method does nothing. Otherwise, it performs the necessary actions to turn the switcher OFF.

      Step: Processed by Aspect