Class AbstractCarousel

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta
Direct Known Subclasses:
Carousel

public abstract class AbstractCarousel extends AbstractWidget
Represents the base class for carousels in the UI, extending AbstractWidget.

This class provides a foundation for creating carousel components with features such as forward and backward scrolling. It integrates with the widget framework and supports dynamic extensions for carousel-specific behavior.

Features:

  • Encapsulates common behavior and attributes of carousel components.
  • Provides abstract methods for forward and backward scrolling.
  • Uses the Widget annotation for enhanced identification and integration.

Purpose:

  • Standardizes the implementation of carousel-like components in the UI.
  • Facilitates integration with the UI framework and test infrastructure.

Usage Example:

public class ImageCarousel extends AbstractCarousel { public ImageCarousel(SelenideElement rootElement) { super(rootElement); }
See Also:
  • Constructor Details

    • AbstractCarousel

      public AbstractCarousel()
      Default constructor. Initializes the carousel as a generic widget with the type "carousel".
    • AbstractCarousel

      public AbstractCarousel(org.openqa.selenium.By rootLocator)
      Constructor that initializes the carousel using a Selenium By locator.
      Parameters:
      rootLocator - the Selenium locator for the carousel's root element
    • AbstractCarousel

      public AbstractCarousel(String selenideRootLocator)
      Constructor that initializes the carousel using a Selenide locator string.
      Parameters:
      selenideRootLocator - the Selenide locator string for the carousel's root element
    • AbstractCarousel

      public AbstractCarousel(com.codeborne.selenide.SelenideElement selenideRootElement)
      Constructor that initializes the carousel using a Selenide element.
      Parameters:
      selenideRootElement - the Selenide element representing the carousel's root
  • Method Details

    • scrollForward

      public abstract void scrollForward()
      Scrolls the carousel forward.

      This method must be implemented by subclasses to provide the specific behavior for scrolling the carousel to the next set of items.

      Step: Processed by Aspect

    • scrollBackward

      public abstract void scrollBackward()
      Scrolls the carousel backward.

      This method must be implemented by subclasses to provide the specific behavior for scrolling the carousel to the previous set of items.

      Step: Processed by Aspect