This is the fastest way to share reports with a team without hosting them yourself. Cucumber provides a free, temporary cloud hosting service at reports.cucumber.io .
@CucumberOptions( plugin = { "pretty", "html:target/cucumber-reports.html", "json:target/cucumber.json" } ) public class TestRunner {} Use code with caution. Logs readable text to the console. HTML: Creates a searchable, user-friendly browser report.
After execution, a unique URL is printed in your console that stays live for 24 hours. 📊 Option 3: Advanced Visual Reports cucumber-report
Filter reports by @Smoke or @Regression to keep results focused.
Best for teams that need "executive-level" visuals and PDF exports. This is the fastest way to share reports
In Jenkins or Azure DevOps, always archive the HTML artifact so you can track test history over time.
Supports embedding screenshots automatically for failed steps via @After hooks. 💡 Best Practices for Deep Reporting Logs readable text to the console
Essential if you want to use external tools like Allure later. ☁️ Option 2: Cucumber Reports Service (Cloud)
This is the fastest way to share reports with a team without hosting them yourself. Cucumber provides a free, temporary cloud hosting service at reports.cucumber.io .
@CucumberOptions( plugin = { "pretty", "html:target/cucumber-reports.html", "json:target/cucumber.json" } ) public class TestRunner {} Use code with caution. Logs readable text to the console. HTML: Creates a searchable, user-friendly browser report.
After execution, a unique URL is printed in your console that stays live for 24 hours. 📊 Option 3: Advanced Visual Reports
Filter reports by @Smoke or @Regression to keep results focused.
Best for teams that need "executive-level" visuals and PDF exports.
In Jenkins or Azure DevOps, always archive the HTML artifact so you can track test history over time.
Supports embedding screenshots automatically for failed steps via @After hooks. 💡 Best Practices for Deep Reporting
Essential if you want to use external tools like Allure later. ☁️ Option 2: Cucumber Reports Service (Cloud)