I am trying to execute a test case using robotframework automation and with every test case i am getting 3 log files which are in html format. I am trying to save those 3 files in a different folder and different path.
Plus if i execute another test case the log files will save there with the increment of their count. like output2.html and so on.
Use the option -d for the same
Try the following
pybot -d <output directory> test.txt
try -T option which will add the timestamp in the output file which should serve the same pupose...
pybot -T -d <output directory> test.txt
If possible explain me with an simple example for better understanding.