I,m using single pycharm project to run different test files for a particular website. ex -: I'm having robot files with test cases such as
loginTest.robot , purchasetest.robot , signinwith_facebook.robot
When I run the code for each robot file, the report files are being overridden.
How to generate a separate report file for each .robot file when the test file is running.
Are you using
robot
command to execute? If yes, you can run with these arguments:I suggest using
-d
argument. Indicate a different directory for each.robot
file executing.BTW, why don't you execute them at the same time? You can see each log in one file.