Package allurium.aspects
Class CarouselAspects
java.lang.Object
allurium.aspects.CarouselAspects
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:
AbstractCarousel.scrollForward()
- Scrolls the carousel forward.AbstractCarousel.scrollBackward()
- Scrolls the carousel backward.
Usage Example:
public class ImageCarousel extends AbstractCarousel {
public ImageCarousel(SelenideElement root) {
super(root);
}
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
stepScrollBackward
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the execution of theAbstractCarousel.scrollBackward()
method.void
stepScrollForward
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the execution of theAbstractCarousel.scrollForward()
method.
-
Constructor Details
-
CarouselAspects
public CarouselAspects()
-
-
Method Details
-
stepScrollForward
Intercepts and logs the execution of theAbstractCarousel.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
Intercepts and logs the execution of theAbstractCarousel.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
-