Cedric
Cedric

Reputation: 977

How to write a custom report name in Robotframework

I am trying to change the default report name (report.html) inside my test suite but can't find a way.

What are the different way to specify the report name ?

Upvotes: 1

Views: 3076

Answers (1)

Laurent Bristiel
Laurent Bristiel

Reputation: 6935

You should use the --report command line option (see User Guide.)

For example:

pybot --report myoutput.html mysuite.robot

will name your report myoutput.html instead of the default output.html

Upvotes: 6

Related Questions