As below image shows we have 3 set of requests that happens one after other.
i.e, not all of the are concurrent and not all of them are sequentials. it is mix of sequential and concurrent set of request
I am trying to model this transaction as below
ChainBuilder ticketView = exec(http("BaseUrl").get("/").headers(headers_0)
.resources(runtime_main_de5c7c76_js, f2_07ae3254_chunk_css, main_4f1b4200_chunk_js,f2_67e0b244_chunk_js)
.resources(toolbar_logo_4bb25f54_png,tokenReq)
.resources(toolbar_logo_4bb25f54_png,uiRoutesReq)
.resources(toolbar_logo_4bb25f54_png,drlReq,dataSizeReq)
);
but unfortunately except BaseUrl request rest are concurrent in the scenario
. is there any way to model same as ui is sending request to backend?