Class SelectAspects

java.lang.Object
allurium.aspects.SelectAspects

public class SelectAspects extends Object
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
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    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 options
    void
    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.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SelectAspects

      public SelectAspects()
  • Method Details

    • stepSelect

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

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

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

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

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

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

      public void stepAssertHasItems(org.aspectj.lang.ProceedingJoinPoint invocation) throws Throwable
      Intercepts and logs the step for asserting that the options list contains all of required options
      Parameters:
      invocation -
      Throws:
      Throwable