代码如下
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);
}
但是我看到打印输出为空而不是值,有什么线索吗?
答案 0 :(得分:0)
此问题已解决。我应该已经访问了完整路径。