Here is my test script in Gatling:
val createTemplatesScenario = scenario("Template creation")
.feed(userFeeder)
.exec(doLogin) // populates access token in the session
.exec(doListProviders)
.exec(doCreateTemplate)
...
.exec(doDeleteTemplate)
And I want to exclude the Login request from the reports, because sometimes it can take too much time in our system and affects all indicators:

Is there a way to "prepare" a test scenario so that only the necessary actions are taken into account?
source
share