Allure.LIFECYCLE.fire(startedEvent);
}
@AfterThrowing(pointcut = "anyMethod() && withStepAnnotation()", throwing = "e")
public void stepFailed(JoinPoint joinPoint, Throwable e) {
Allure.LIFECYCLE.fire(new StepFailureEvent().withThrowable(e));
Allure.LIFECYCLE.fire(new StepFinishedEvent());
}