1

We run the robot framework test cases in a certain order and generate a separate output files for each collection. Example is shown below:

pabot -L TRACE --output test1.xml robot_framework/tests/test1

pabot -L TRACE --output test2.xml robot_framework/tests/test2

Later on we use 'rebot' command to combine the test reports as shown below:

rebot test1.xml test2.xml.

The issue we are facing is, there is no output.xml file generated. How can we combine the reports such that there is a 'output.xml' file? If we do not have this file, the Jenkins plugin for Robot Framework fails to generate report.

1 Answer 1

5

You just have to add "--output output.xml" to your rebot command line to have the xml file generated:

rebot --output output.xml test1.xml test2.xml

The Robot Framework Jenkins Plugin can then pick it up.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.