Package allurium.aspects
Class SelectAspects
java.lang.Object
allurium.aspects.SelectAspects
Aspect class for handling additional behavior and logging for the
Select
class.
This class intercepts and augments specific method calls on Select
instances to provide
automated logging, step injection into Allure reports, and error handling.
Features:
- Intercepts select actions by text, index, and other criteria.
- Handles assertions related to the selected value and dropdown options.
- Automatically adds steps to Allure reports for better traceability.
- Provides consistent error handling and logging for select-related operations.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
stepAssertCurrentValue
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for asserting the current selected value in the select or dropdown list.void
stepAssertCurrentValueIsNot
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for asserting that the current selected value is not the specified value.void
stepAssertHasItems
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for asserting that the options list contains all of required optionsvoid
stepSelect
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for selecting an option by its text value.void
stepSelectAny
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for selecting any option in the select or dropdown list.void
stepSelectAnyBesides
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for selecting any option besides the specified value.void
stepSelectByArrowsLeftAndRight
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for selecting an option using arrow keys.void
stepSelectByIndex
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for selecting an option by its index.void
stepSelectFirst
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for selecting the first option in the select or dropdown list.void
stepSelectLast
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts and logs the step for selecting the last option in the select or dropdown list.
-
Constructor Details
-
SelectAspects
public SelectAspects()
-
-
Method Details
-
stepSelect
Intercepts and logs the step for selecting an option by its text value.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepSelectByIndex
Intercepts and logs the step for selecting an option by its index.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepSelectByArrowsLeftAndRight
public void stepSelectByArrowsLeftAndRight(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable Intercepts and logs the step for selecting an option using arrow keys.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepSelectFirst
Intercepts and logs the step for selecting the first option in the select or dropdown list.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepSelectLast
Intercepts and logs the step for selecting the last option in the select or dropdown list.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepSelectAny
Intercepts and logs the step for selecting any option in the select or dropdown list.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepSelectAnyBesides
Intercepts and logs the step for selecting any option besides the specified value.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepAssertCurrentValue
public void stepAssertCurrentValue(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable Intercepts and logs the step for asserting the current selected value in the select or dropdown list.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepAssertCurrentValueIsNot
public void stepAssertCurrentValueIsNot(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable Intercepts and logs the step for asserting that the current selected value is not the specified value.- Parameters:
invocation
- the method invocation context- Throws:
Throwable
- if the intercepted method throws any exception
-
stepAssertHasItems
Intercepts and logs the step for asserting that the options list contains all of required options- Parameters:
invocation
-- Throws:
Throwable
-