Threads run in parallel - Requests within a thread run in sequence - usually you model one user's action as one thread so something like +Thread Group (thread = 10 . iterations = 20, ramp up) ++Login ++Dashboard ++Transaction page means JMeter will start up 10 threads (within ramp up time) which will represent 10 users accessing your site at the same time- then each thread will execute the steps in sequence (Login,Dashboard, Transaction) and then repeat this for 20(in the example above) iterations
You can also have more complex behavior (for eg. you want to change what each user does etc) - And you probably need to go through JMeter's component reference for controllers , timers etc to see the breadth of JMeter capabilities http://jmeter.apache.org/usermanual/component_reference.html http://jmeter.apache.org/usermanual/build-web-test-plan.html regards deepak On Mon, Oct 19, 2015 at 3:24 AM, Arunbalakumar Qa <[email protected] > wrote: > Hi Guru, > > Thanks for your reply. > > My application will be accessed only by giving the correct login > credentials. > > And based on the privilege provided for that credential the other pages > will be accesses. How does jmeter handle this? > > Will the request run in a sequence? For example > > Login request first > Dashboard of that login as the second hit > Transaction page as the next. Etc.... > > Regards > Arun > > On Mon, Oct 12, 2015 at 6:55 PM, Guruprasad <[email protected]> > wrote: > > > For parallel running threads, the thread which got the response earlier > is > > displayed first in jmeter. You can probably verify it based on the > response > > time if all the threads were started at the same time. > > > > Regards, > > Guru > > > > > On 12-Oct-2015, at 2:47 PM, Arunbalakumar Qa < > [email protected]> > > wrote: > > > > > > Hi, > > > > > > The output of the jmete rthread does not display in a sequence. > > > > > > Thread execution goes on like > > > > > > Thread 1.2 > > > Thread 1.6 > > > Thread 1.8 > > > Thread 1.3 > > > Thread 1.1 > > > > > > Without any sequence. Is there any reason behind this? > > > > > > Regards > > > Arunbalakumar > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > > > > >
