I am using Jmeter to stress test my website.
Each user needs to make two requests consecutively:
- First request to a auto-login page.
- Second request to an internal page.
How can I tell Jmeter to make these two requests in that order for each t开发者_开发百科hread?
Take a look at order execution in the User Manual
Jmeter will run the requests in the order you place them. So your structure would look like this:
Test Plan
+ ThreadGroup
+ HTTP Request - LOGIN
+ HTTP Request - 2nd Page
In addition to reading the usermanual, also check out the official step-by-step guide on how to record
精彩评论