我需要在Gatling脚本中捕获“HTTP响应”,包括响应代码,cookie,响应消息,响应正文等。 与HTTP请求关联的HTTP响应。我在Gatling Script中都需要这两个。
答案 0 :(得分:1)
这可以像下面这样做
http("Poll")
.get(Configuration.URL )
.queryParam("requestor", "Test")
.check(status.is(200))
.check(status.saveAs("statusCode")).check(xpath("//somerespone").saveAs("someresponse"))