How to customize and add details like version in robot framework report.html file?

Viewed 19

I want to add details like version of the application on which the test are run in my report.html file.Is it possible?

1 Answers

Set suite metadata allows you to associate key/value pairs with a suite.

The following test illustrates how it works:

*** Test Cases ***
Example
    Set suite metadata  program under test  my cool program

When the test runs, this is what appears in report.html:

screenshot of report.html

This information will appear in the log like so:

screenshot of log.html

Related