Google News
logo
Cucumber - Interview Questions
How can you generate reports using Cucumber?
You can generate the output/report of the cucumber using different cucumber commands.
>cucumber adding.feature --format HTML 

>cucumber adding.feature --out report.html 

>cucumber adding.feature --format pretty
The report file will be stored in the project folder itself.
Advertisement