How to get individual test results for each Excel row in production with UiPath?

Hello,

I am currently working with UiPath Test Suite and facing an issue with test results aggregation. I have an input file in Excel format, and I’ve set up a test sequence that loops through each row. However, when I run the test, it aggregates the results into a single outcome for all rows. This is not what I want.

In development, I used the “Add Data Test” option in UiPath Studio which allowed me to get individual results for each row during my tests. This setup worked perfectly, and I would like to replicate this individual result reporting in a production environment after the package is published.

Is there a way to configure UiPath or manipulate the test setup so that I can get separate results for each row post-deployment, similar to what I achieved with data injection in Studio? Any guidance or suggestions on how to achieve this would be greatly appreciated.

Thank you!

@Morgan_Fulgoni

Try using test data queue so that each row values are processed individually

cheers

Hi @Anil_G,

Thank you for your response.
I had a doubt, but I tried and as I expected it doesn’t work.

From what I understood, one execution equals one result.
When we put data by adding data through ‘Add Test Data’ then run with all the variant data, we got multiple rows in Test Suite because they were multiple execution with a single run.
If we loop through an datatable or a queue, we still go through a single execution, that’s why we got a single test result (that contains all the rows we loop’d through).
I tried a lot of thing and I wonder if it’s possible to still have the same result as mention before (in production).

@mrgnflg

if you can show what you need as well may be it would be more clear as I see the results are as expected…what are you expecting to be shown?

As I see two line items each refer to one test data queue…one failed and one passed

cheers

@Anil_G
Sorry, I’ll try to be clearer.
Rather than having a test that contains n results, I’d like to have n results that contain a test.
On this execution, for example, rather than having a test case that contains two results, I’d like to have 2 test cases that contain 1 result each.

@Morgan_Fulgoni

but ideally thats not how the test cases work right as its a single case with multi data it would consider as 1

if you want to make it separate may be include a end execution at the end of test case and check so that after each iteration the process or case ends and it starts again…not an ideal way but this is how it can be achieved I believe

cheers