10-30-2023 05:28 AM
Hello All,
Suppose you have a sequence with 3 batches (3 UUTs), and you want to store data of a specific variable when the 3 batches have finished
For example :
FileGlobals.OutputData contains different values from each Batch.
How can I Store this data in 3 different variables only when all the 3 batches have finished
DataBatch_1 = FileGlobals.OutputData (from Batch1)
DataBatch_2 = FileGlobals.OutputData (from Batch2)
DataBatch_3 = FileGlobals.OutputData (from Batch3)
Thanks for your help 🙂
10-30-2023 10:05 AM
So no matter if you are using batches or single UUTs: each testrun has it's own execution, so if you want to pass data from previous to future executions you have to use persistent variables like station globals.
10-30-2023 10:51 AM
thank you for your response i will try this