Class CheckBoxAspects

java.lang.Object
allurium.aspects.CheckBoxAspects

public class CheckBoxAspects extends Object
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:

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:
  • Constructor Details

    • CheckBoxAspects

      public CheckBoxAspects()
  • Method Details

    • stepCheck

      public void stepCheck(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the CheckBox.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

      public void stepUncheck(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the CheckBox.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

      public void stepAssertChecked(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the CheckBox.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

      public void stepAssertUnchecked(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the CheckBox.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