I am executing set of test cases using robot framework as follows:
pybot -o output1.xml -l log1.html -r report1.html testsuite.robot
this will create the output xml file along with report and log files respectively in my directory.
Now, consider there are 10 test cases in the above suite and out of which 8 are passed and 2 are failed. I will rerun these test cases using following command:
pybot --rerunfailed -o output2.xml -l log2.html -r report2.html testsuite.robot
I will get two xmls and then I wanted to merge them and get the final xml file as output1.xml along with new log and report files using following command:
rebot --merge output1.xml output2.xml
My concern is, here we are getting log.html and report.html. But, instead of these default files, can i get my customized logs with whatever name I give?
Like below
rebot --merge output1.xml output2.xml -l Final_Log.html -r Final_Report.html
How can I get logs with customized name after merging the two xml files?