我需要使用 java 从 Rest Assured 中的文本文件中读取有效负载。 有效载荷将像
{
"country": "India"
}
您的查询不精确,但是请参阅下面的代码。 使用它,您可以从 .json 文件传递 json 有效负载。(Insstead .txt使用 .json(
@Test(enabled=true,priority=1,description="Use Json file for Rest assured paylord")
public void useJsonfileForRestassuredpayload() throws IOException {
String jsonBody = new String(Files.readAllBytes(Paths.get(".\resources\CreateUser.json")));
RestAssured.baseURI="http://localhost:3000/";
given().contentType("application/json").
body(jsonBody).when().post("posts/").then().assertThat().statusCode(201).log().all();
}