Allure Reports - Fail in middle steps scenario doesn't stop test

33 views Asked by At

I'm using Java 11, Selenium, Junit, Allure Reports in my testing project. I'd like in my allure report to failed steps doesn't stop test. Is it possible after fail "When" step test doesn't stopped and continues next step "Then"?

Allure Report Screenshot

I tried several methods but to no avail.

1

There are 1 answers

0
Dmitry Baev On

This is how Cucumber works. After a step fails, the rest of the steps are reported as skipped. Please note that skipped steps have not been executed and are only shown in the report for documentation purposes.