How to generate the report.html with the report.xml?

I have looked at the robot framework user guide and I have seen that with the reboot command is possible to do this but I am not sure. Has anyone used the command?

Hi,

The rebot command takes a .xml file has input, then acts on it to merge, modify name, title, keep keywords… depending of what you require and passed commands (see the 6.2.2 Command line options for post-processing outputs)

For exemple with a output.xml:

 rebot output.xml   => Generate "report.html" and "log.html" in the same folder

 rebot --report myreport.html --log mylog.html output.xml  => Generate "myreport.html" and "mylog.html" in the same folder

 rebot --outputdir .\New --report myreport.html --log mylog.html output.xml  => Generate "myreport.html" and "mylog.html" in the New subfolder

Regards.
Charlie

2 Likes

Ok thanks Charlie