Hello, I’m using gatling 3.7.6 along with Java 11. I am able to execute single API tests but now stuck where I need to execute multiple requests one after another using the keys from previous request response. For example I’m executing an auth. request and using the token in the subsequent requests as shown below: First reqs:
Thanks for replying and giving hint, made it work plus found another way. See below: first way
.header(“Authorization”,"Bearer "+ “#{auth_token}”) 2nd way
.header(“Authorization”, session → { return "Bearer " + session.getString(“auth_token”); })