I have 50 records(rows) in my CSV file, and I have 10 thread groups which all depend on each other.
Example (I'm calling Thread Group TH):
TH1
|_some request
|_fetching output value
TH2
|_request(passing TH1 output value here)
|_fetching output
I wanted to run 1st record from CSV and continuously run from TH1 to TH10, then pick 2nd record from CSV and continuously run TH1 to TH10.
Right now my script is picking any record from CSV and running in ordered way of threads and requests.
I also wanted to store all output values from each thread somewhere (csv, txt, any variable).