如何使用Rest Assured一次提取REST API响应和状态代码

时间:2017-08-03 09:01:17

标签: rest automation

我还需要从REST API响应和状态代码中获取一些字段。我一次只能得到一个。

Response res = given().header("Content-Type","application/json").body(json).when().post("/rest/auth/1/session").then().extract().response() ;


Integer stC = given().header("Content-Type","application/json").body(json).when().post("/rest/auth/1/session").then().extract().statusCode() ;

如何在一个请求中同时获得这两个?

1 个答案:

答案 0 :(得分:0)

正如所料,我问了一个愚蠢的问题。

这就是我们如何从Response对象

获取所有内容
    res.statusCode() ;
    res.headers();
    res.body() ;