Are k6
http
calls asynchronous? When I execute a call like http.get(url, params)
is k6
waiting until the response?
If it is asynchronous and let's say I'm executing few calls and I want the response of a one call as the parameter to another call. How can I wait before executing the 2nd call until the response is returned from 1st one?