jsonPath()未获取值,请放心

时间:2018-09-25 09:30:33

标签: json rest-assured

代码如下

    Response response = null;  
    try {  
    response =given().log().everything().when().get().
    then().contentType(ContentType.JSON).extract().response();  
    String a = response.jsonPath().getString("aType");  
    String b = response.jsonPath().getString("bType");  
    System.out.printn(a+b);  
}

但是我看到打印输出为空而不是值,有什么线索吗?

1 个答案:

答案 0 :(得分:0)

此问题已解决。我应该已经访问了完整路径。