Parallel operations

Hello Community

I have the following scenario.
One http POST request happening every 1 second with 1 VU.
At the same time i have to test 5-10 VU on a GET request

Basically, i want to test a continuous 1 user posting in the background, but at the same time real web users using the web application

Regards
BP

Hello and welcome to the forum!

Take a look at Scenarios, which are for exactly this purpose: Scenarios

1 Like

Thanks @Tom
That really helped.

While using scenarios, can I also use setup() which ca return a data{} ?
I have 2 scenarios. But to perform these 2 scenarios, i need to perform ONE single http call to get a token. And that token needs to be supplied to both scenarios.

Regards
Bobu

Yeah, using the setup() function to make that single http call and return the token to be supplied to your scenario functions should work exactly as you described.

1 Like

Yes @dan_nm
there was one config in the options discardResponseBodies: true which was causing the issue for me.
When that is adjusted it worked.