Reputation: 532
I'm looking into Jmeter to load test a webapp.
What is done in the real app when a user clicks a button is : 1. an http request is sent to a server and the response contains a list of ids. 2. another request which is formulated by the list of ids is sent to server. I'm interested in the overall performance of both steps.
for example:
I get a json looks like:
{"ids":[11,22,33,44,55,66]}
ids=11,22,33,44,55,66
How can I simulate a test like this in jmeter?
Upvotes: 1
Views: 388
Reputation: 3605
You will have to do something of following sort.
You may find following beginners jmeter screen cast helpful.
Upvotes: 1