Is there a way to include multiple sequential calls in a single exec()?

Hi,
Greetings everyone!

Is there any way to include multiple calls in a single exec(), such that they runs sequentially and we can capture data from each call and pass to the subsequent calls.

Regards,
Tenu

Hi Tenu,

I don’t think we can have multiple http requests in a single exec. but afaik, having sequence of exec with in a scenario gets called one after the other. hope it clarifies.

-Vijay

Okay. Thanks Vijay!

Regards,
Tenu

You can also put an exec within an exec. So if you have an exec chain, like, returned from a function, and call that within an exec, it works perfectly.

Thanks John!