如何在Gatling脚本上捕获“HTTP响应”?

时间:2018-05-15 18:10:00

标签: scala performance-testing httpresponse gatling scala-gatling

我需要在Gatling脚本中捕获“HTTP响应”,包括响应代码,cookie,响应消息,响应正文等。 与HTTP请求关联的HTTP响应。我在Gatling Script中都需要这两个。

1 个答案:

答案 0 :(得分:1)

这可以像下面这样做

 http("Poll")
                .get(Configuration.URL )
                .queryParam("requestor", "Test")
                .check(status.is(200))
                .check(status.saveAs("statusCode")).check(xpath("//somerespone").saveAs("someresponse"))