Hey @ahtashamali06,
I think you’re overriding the values you sent with the following snippet:
eg. you iterate over all rows in run 1, and add 3 columns to each (test_response, request_body, sr_num) with values. When you are in run 2, you iterate over all rows again(this might include the previous rows as well), again you overwrite the same columns with different values.
I’m not sure if your end result involves adding columns for every row in the csv or adding rows for each iteration. Because if you parse a csv, and instead of appending to jsonData.data (an array) if you add new attributes(SR_NUM) it would result in adding columns to the csv.
Either way, my hunch is the values are being overwritten. If you’d like to avoid that, then you might need to come up with new column names for each iteration or make changes to the format.
I’m guessing though, let me know if this helped/helps