Varghese John
Varghese John

Reputation: 101

To set a random pause time between every request in the Gatling Simulation

How can we set a random pause time between every request in the Gatling Simulation.

By defining the below method I am able to get a random response time.

    def minPause = 100.milliseconds
    def maxPause = 500.milliseconds

But in this case, I will have to call it whenever I need the pause time.

Is there a way to set random pause time between every request at the global level?

Upvotes: 0

Views: 1791

Answers (1)

Stéphane LANDELLE
Stéphane LANDELLE

Reputation: 6608

Please read the documentation, there's a built-in for uniform pauses:

// Uniform random pause duration:
pause(minPause, maxPause)

Then, there's no built-in way to automatically add a pause after each request. You can either specify one or create a helper method.

Upvotes: 1

Related Questions