我想通过在文本中输入名称来访问UUID。
这是我的代码:
sqlalchemy.exc.InvalidRequestError: Incorrect number of values in identifier to formulate primary key for query.get(); primary key columns are 'user.testing','user.id
我返回了所有响应,但是我想给出测试名称以获取UUID public void historyResponse() {
Response response = given()
.when()
.get("my uri")
.then()
.statusCode(200)
.extract().response();
JsonPath jp = response.jsonPath();
List<Object> text = jp.getList("text");
System.out.println(text);
}
。请帮忙。这是响应:
jp.getList("name of the test")