03-20-2024 02:12 AM
I have a sequcence problem :
I have a total of 5 test items in sequence, and at the report status will shows 5 passes or maybe 5 fails of each step, how can I count the total number of passes/failures and show on the final report
Solved! Go to Solution.
03-20-2024 03:17 AM
Hi
You can use XML or HTML parsers to modify the existing report and add the pass/fail information
or
You can create a sequence file callback to store the step pass/fails counts for each step and add to report in any of the two methods.
03-21-2024 10:24 AM
A simple alternative to modifying how the report is generated would be to use a PostMainSequence callback to process the results list from MainSequence, count passed and failed (and you could be smart about what results you include), and then add additional results to the UUT information, which will be automatically added to the report header if you are using built-in report features in TestStand. Attached is a TestStand 2019 example sequence file of how to do this.