Reputation: 93
Need some help on Jmeter for the following scenario please I need to simulate these steps in order to load our application. a) make a request to a web-service.(done) b) verify the response for some variables and extract a URL address from the response.(done) c) Now using the extracted URL need to make another request.(extraction done) d) in response a media file will be sent. My Plan consists of "stepping thread group-->(Sampler 1)HTTP Request +couple of listeners for data gathering--> (Sampler 2)HTTP Request +couple of listeners for data gathering. the issue is that when i ran the plan the first sampler generated 4 requests but the second one generated only 2 can you tell me why is it so. In general how can i simulate all 4 steps in one go for a single thread. I hope that i have cleared myself.
Upvotes: 2
Views: 1528
Reputation: 34566
In JMeter each thread runs requests sequentially already.
So in order to do what you expect you'll need to use:
Read:
Upvotes: 1