JSA
JSA

Reputation: 21

Jmeter - executed a script with and without timer. but the result doesnt seem to work well

i executed a script for login in Jmeter. User 1, rampup time 1, loop 5, cache and cookie manager added. Clear cache of each iteration checked.

without timer below are the time taken for a user in next iteration enter image description here

after adding constant timerof 3000ms below are the values obtained. enter image description here

can someone please explain the results after adding constant timer of 3000ms? according to me the result should be approx. 2+30sec =around 32 sec foreach iteration.

Upvotes: 1

Views: 39

Answers (1)

Dmitri T
Dmitri T

Reputation: 168072

JMeter doesn't include Pre-Processors, Post-Processors and Timers duration into Sample Result by default

If you want to include these 3 extra seconds added by the Timer put your Sampler under the Transaction Controller and tick both Generate parent sample and Include duration of timer and pre-post processors in generated sample boxes:

enter image description here

Upvotes: 1

Related Questions