How to compare responses from http calls in gatling?
问题 I have 2 http calls in 2 different function def and saving json keys from response body in gatling session. How can I match them? def getAppData():HttpRequestBuilder = { http("get application resource") .get("host/app") .header("Authorization", "Bearer "+ token) .check(status.is(200)) .check(jsonPath("$..${app_info}").saveAs("app_Response")) } def getUserData():HttpRequestBuilder = { http("get user data ") .get("host/user/data") .header("Authorization", "Bearer "+ token) .check(status.is(200)