Class CarouselAspects

java.lang.Object
allurium.aspects.CarouselAspects

public class CarouselAspects extends Object
Aspect class for enhancing interactions with carousel components using AbstractCarousel.

This class provides aspect-oriented programming (AOP) implementations for the methods in AbstractCarousel, including scrolling forward and backward. It integrates with Allure reporting for comprehensive test step tracking and visualization.

Features:

  • Intercepts method calls to carousel scrolling methods.
  • Generates detailed Allure steps for forward and backward scrolling actions.
  • Tracks success or failure of intercepted methods and updates Allure steps accordingly.

Purpose:

  • Enhances test reporting by providing step-level tracking of carousel interactions.
  • Ensures consistent handling of carousel method execution with error management.

Methods Processed by Aspects:

Usage Example:


 public class ImageCarousel extends AbstractCarousel {

     public ImageCarousel(SelenideElement root) {
         super(root);
     }
See Also:
  • Constructor Details

    • CarouselAspects

      public CarouselAspects()
  • Method Details

    • stepScrollForward

      public void stepScrollForward(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts and logs the execution of the AbstractCarousel.scrollForward() method.

      This aspect generates an Allure step for tracking the forward scroll action on the carousel.

      Parameters:
      invocation - the join point representing the intercepted method
      Throws:
      Throwable - if the intercepted method throws an exception
    • stepScrollBackward

      public void stepScrollBackward(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts and logs the execution of the AbstractCarousel.scrollBackward() method.

      This aspect generates an Allure step for tracking the backward scroll action on the carousel.

      Parameters:
      invocation - the join point representing the intercepted method
      Throws:
      Throwable - if the intercepted method throws an exception