How to Add extra layer for allure cucumber jvm #1788
-
Hi, I am using allure cucumber jvm in my maven project. I wanted to add an extra hierarchy in the allure report In example.feature file, i have following: Feature: Testing How do I add an extra hierarchy for this (tag?), so in allure report it can look something like: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
To organize your tests by an extra layer, you can use the Allure Runtime API. This is accomplished by including For categorizing all your tests in this manner, consider employing the Labels via Properties feature; see the docs for the details. Further information can be found in the Allure Cucumber JVM documentation, available at Allure Report. |
Beta Was this translation helpful? Give feedback.
To organize your tests by an extra layer, you can use the Allure Runtime API. This is accomplished by including
Allure.epic("Extra Layer")
in your step body.For categorizing all your tests in this manner, consider employing the Labels via Properties feature; see the docs for the details.
Further information can be found in the Allure Cucumber JVM documentation, available at Allure Report.