Hello,
I am running a loop early in my test plan and I need to store the
different data of each time I go thru the loop so that later on in the
test plan where I run another time the same loop I can reuse the data
stored previously.
Test plan is so:
Loop x times
Perform some stuff
Loop x times
I was thinking of storing my data as vars.put("data1") vars.put("data2")
etc but I could not find how to know which iteration of the loop I am
currently running.
Is this information available in the pre defined variables somewhere?
Thank you.