Package allurium.aspects
Class CheckBoxAspects
java.lang.Object
allurium.aspects.CheckBoxAspects
Aspect for enhancing methods in
CheckBox
with additional behaviors such as step logging.
This class intercepts method calls on checkbox elements (e.g., check, uncheck, assertChecked, assertUnchecked) and wraps them with Allure step logging to provide better visibility into test execution.
Features:
- Logs checkbox actions (check, uncheck) as steps in Allure reports.
- Handles errors during intercepted method executions, ensuring proper status updates in reports.
- Provides additional debugging information in case of exceptions or assertion failures.
Purpose:
- Enhances visibility of checkbox interactions in tests by integrating Allure step logging.
- Standardizes the logging format and behavior for checkbox operations.
Intercepted Methods:
CheckBox.check()
- Logs the checkbox checking action.CheckBox.uncheck()
- Logs the checkbox unchecking action.CheckBox.assertChecked()
- Logs the assertion of the checkbox being checked.CheckBox.assertUnchecked()
- Logs the assertion of the checkbox being unchecked.
Example Usage:
CheckBox checkBox = $checkbox(".checkbox-class");
checkBox.check(); // Logged as a check step in Allure report
checkBox.uncheck(); // Logged as an uncheck step in Allure report
checkBox.assertChecked(); // Logged as an assertion step in Allure report
checkBox.assertUnchecked(); // Logged as an assertion step in Allure report
Allure Integration:
- Each intercepted method starts a new Allure step with a unique UUID.
- Step names are generated dynamically using
StepTextProvider
for consistency. - Step statuses are updated based on the success or failure of the intercepted method.
Exception Handling:
- Logs exceptions encountered during method execution.
- Sets the step status to FAILED in case of an error or assertion failure.
- See Also:
-
CheckBox
Allure
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
stepAssertChecked
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts theCheckBox.assertChecked()
method to log the checkbox assertion action as an Allure step.void
stepAssertUnchecked
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts theCheckBox.assertUnchecked()
method to log the checkbox assertion action as an Allure step.void
stepCheck
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts theCheckBox.check()
method to log the checkbox checking action as an Allure step.void
stepUncheck
(org.aspectj.lang.ProceedingJoinPoint invocation) Intercepts theCheckBox.uncheck()
method to log the checkbox unchecking action as an Allure step.
-
Constructor Details
-
CheckBoxAspects
public CheckBoxAspects()
-
-
Method Details
-
stepCheck
Intercepts theCheckBox.check()
method to log the checkbox checking action as an Allure step.- Parameters:
invocation
- the join point representing the intercepted method call- Throws:
Throwable
- any exception thrown by the intercepted method
-
stepUncheck
Intercepts theCheckBox.uncheck()
method to log the checkbox unchecking action as an Allure step.- Parameters:
invocation
- the join point representing the intercepted method call- Throws:
Throwable
- any exception thrown by the intercepted method
-
stepAssertChecked
Intercepts theCheckBox.assertChecked()
method to log the checkbox assertion action as an Allure step.- Parameters:
invocation
- the join point representing the intercepted method call- Throws:
Throwable
- any exception thrown by the intercepted method
-
stepAssertUnchecked
Intercepts theCheckBox.assertUnchecked()
method to log the checkbox assertion action as an Allure step.- Parameters:
invocation
- the join point representing the intercepted method call- Throws:
Throwable
- any exception thrown by the intercepted method
-