Код: Выделить всё
Response createResponse =
given()
.redirects().follow(true)
.body(requestBody)
.when()
.post("/Path")
.then()
.statusCode(202)
.extract()
.response();
Подробнее здесь: https://stackoverflow.com/questions/796 ... -post-call
Код: Выделить всё
Response createResponse =
given()
.redirects().follow(true)
.body(requestBody)
.when()
.post("/Path")
.then()
.statusCode(202)
.extract()
.response();