Class UIElementAspects

java.lang.Object
allurium.aspects.UIElementAspects

public class UIElementAspects extends Object
This class provides Aspect-Oriented Programming (AOP) enhancements for the UIElement class. It integrates with the Allure framework to automatically log and report steps, statuses, and exceptions during the execution of various UI-related operations.

The aspects intercept specific methods of the UIElement class to wrap their execution with logging and exception handling for improved debugging and reporting.

Key Features:

  • Intercepts UI interactions such as clicks, assertions, and visibility checks.
  • Logs steps to Allure reports with meaningful step names and statuses.
  • Handles and reports exceptions during method execution.

Example Usage:


 // Example invocation in a test:
 UIElement element = UIElement.$uiElement(By.id("example"));
 element.click(); // Automatically logged by the associated aspect
 
See Also:
  • Constructor Details

    • UIElementAspects

      public UIElementAspects()
  • Method Details

    • stepClick

      public void stepClick(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the click() method of UIElement. Logs the click action as a step in Allure reports and updates the step status based on execution outcome.
      Parameters:
      invocation - the join point representing the click() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepDoubleClick

      public void stepDoubleClick(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Parameters:
      invocation - the join point representing the click() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepClickAndHold

      public void stepClickAndHold(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Throws:
      Throwable
    • stepContextClick

      public void stepContextClick(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the contextClick() method of UIElement. Logs the context click action as a step in Allure reports.
      Parameters:
      invocation - the join point representing the contextClick() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertText

      public void stepAssertText(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertText(String) method of UIElement. Logs the assertion as a step in Allure reports, including the expected text.
      Parameters:
      invocation - the join point representing the assertText(String) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertHasText

      public void stepAssertHasText(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertHasText(String) method of UIElement. Logs the assertion step to Allure reports, including the expected text value.
      Parameters:
      invocation - the join point representing the assertHasText(String) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertHasTextWithinTime

      public void stepAssertHasTextWithinTime(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertHasText(String, Integer) method of UIElement. Logs the assertion step to Allure reports with the expected text value and duration.
      Parameters:
      invocation - the join point representing the assertHasText(String, Integer) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepSoftAssertHasText

      public void stepSoftAssertHasText(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the softAssertHasText(String) method of UIElement. Logs the assertion as a step in Allure reports. Handles soft assertion logic.
      Parameters:
      invocation - the join point representing the softAssertHasText(String) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertEquals

      public void stepAssertEquals(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertEquals(Object) method of UIElement. Logs the equality check as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertEquals(Object) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertVisible

      public void stepAssertVisible(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertVisible() method of UIElement. Logs the visibility check as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertVisible() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertVisibleWithDuration

      public void stepAssertVisibleWithDuration(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertVisibleWithDuration(int) method of UIElement. Logs the visibility check with duration as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertVisibleWithDuration(int) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertNotVisible

      public void stepAssertNotVisible(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Throws:
      Throwable
    • stepAssertExists

      public void stepAssertExists(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertExists() method of UIElement. Logs the existence check as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertExists() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertNotExists

      public void stepAssertNotExists(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertNotExists() method of UIElement. Logs the non-existence check as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertNotExists() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepHover

      public void stepHover(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the hover() method of UIElement. Logs the hover action as a step in Allure reports.
      Parameters:
      invocation - the join point representing the hover() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertHasCssClass

      public void stepAssertHasCssClass(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertHasCssClass(String) method of UIElement. Logs the assertion for the presence of a CSS class as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertHasCssClass(String) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertHasNotCssClass

      public void stepAssertHasNotCssClass(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertHasNotCssClass(String) method of UIElement. Logs the assertion for the absence of a CSS class as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertHasNotCssClass(String) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertHasCssClassDuringSeconds

      public void stepAssertHasCssClassDuringSeconds(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertHasCssClass(String, int) method of UIElement. Logs the assertion for the presence of a CSS class within a duration as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertHasCssClass(String, int) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertHasNotCssClassDuringSeconds

      public void stepAssertHasNotCssClassDuringSeconds(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertHasNotCssClass(String, int) method of UIElement. Logs the assertion for the absence of a CSS class within a duration as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertHasNotCssClass(String, int) method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertEmpty

      public void stepAssertEmpty(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertEmpty() method of UIElement. Logs the assertion as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertEmpty() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepAssertNotEmpty

      public void stepAssertNotEmpty(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the assertIsNotEmpty() method of UIElement. Logs the assertion for a non-empty element as a step in Allure reports.
      Parameters:
      invocation - the join point representing the assertIsNotEmpty() method
      Throws:
      Throwable - if an exception occurs during method execution
    • stepScrollTo

      public void stepScrollTo(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts the scrollTo() method of UIElement. Logs the scroll action as a step in Allure reports.
      Parameters:
      invocation - the join point representing the scrollTo() method
      Throws:
      Throwable - if an exception occurs during method execution