Is this type of execution possible? I want to run 2 API calls inside one poller, every 10 seconds.
Will executing 2 pollers (one for each request) give me the same functionality?
val scn: ScenarioBuilder = scenario("This scenario")
.exec(
polling.pollerName("One poller")
.every(10 seconds)
.exec(http("Some request")
.exec(http("Some OTHER request")
)
.exec(polling.pollerName("One poller").stop)