Links in Allure Report

Profile picture for user arilio666

Allure Report is a flexible reporting framework designed to create interactive and comprehensive reports for various test automation frameworks. It allows you to generate test execution reports in a readable and understandable format, providing rich visualization of test results. 

Allure report supports link annotations that can be added to the report to provide additional information and context. Link annotations in Allure Report allow you to associate links with test cases, test steps, or other report elements. 

These links can provide additional information about the test, such as logs, screenshots, or external resources. To add a link annotation to a report element, you can use the @Link annotation in your test.

{
    @Link("https://www.programsbuzz.com")
    @Test
    public void alluPlay() {
        
    }
}
  • Here, the link has been passed down onto the report.
  • Generates an HTML report with a clickable link that leads to the associated resources.