Stuck in a nested loop while using JMeter. Nested loop controller and CSV data set config. -
on site have 2 merchant actions: search , browse. search triggers 3 browses. i have jmeter test uses csv file of merchants , merchant id numbers, when running test @ scale want merchants on site used. i have mapped in jmeter so: loop controller http sampler (search /search/${merchant_name}) csv data set config (merchant name) loop controller http sampler (browse /merchant/${merchant_id}) csv data set config (merchant id) i set loop count = 2 in outer loop , loop count = 3 in inner loop. i expect 2 searches trigger 6 browse actions. search, followed 3 browses, continually until abort test. have misunderstood loop construct? expected behaviour? how can achieve goal of running search, followed 3 browses, twice? i think you're misusing csv data set configuration. i've got scenario working follows: given following csv files: merchants.csv containing: merchant1name merchant2name and 2 other csv files: merchant1name.csv , merc...