You could still do that with a wait: WebPageUrl(); Wait 0.5; WebPageUrl(); Wait 0.6; Or use thinktimes: WebPageUrl(); ThinkTime(0.5); WebPageUrl(); ThinkTime(0.6); If using a wait, the number you use is the amount of wait you will get. If using a thinktime its a bit more flexible in terms of how you can simulate the behaviour. Active profile settings for thinktimes will determine what behaviour you get. In any event, the transaction busy time received for your test will be the transaction response times minus the thinktime/wait time - meaning you can still get transaction response time values without your added waits and thinktimes included.
↧