I’m pretty unfamiliar with this technology, so there is probably a simple answer to my poorly-worded question, so please bear with me. Below is some commented code from my simulation file of just a single user. If I’m formatting this question poorly, or need to give more information, please let me know what I should do.
val scn = scenario("Name")
.exec(http("request_0")
.get("PATH")
.headers(headers_0)
.resources(http("request_1") // the body response from this request generates a jsessionID cookie
.options(uri2 + "PATH2")
.headers(headers_1),
http("request_2")
.get("PATH3")
.headers(headers_0),
...