i'm trying to implement a test plan using JMeter.
I want to do the following scenario: in the same thread i have 2 HTTP Request
HTTP Request login
HTTP Request getStudentsName
the thing is HTTP Request getStudentsName can't be done unless i run the login first , so lets say i want to do the login for 1 user and then getStudentsName for 50 users.
if i put the login and getStudentsName in 2 different threads login give a success but the getStudentsName failed.
My question is can i implement this example in the same thread?or any other help?
Thanks.