步骤:
1、
2、
3、
4、
然后直接用就可以啦
常用的接口测试模板:
given()
.contentType(JSON)
.body($requestBody$).log().all()
.when()
.post($path$)
.then()
.log()
.all()
.statusCode(200);
given()
.contentType(ContentType.JSON)
.body().log().all()
.when()
.get($path$)
.then()
.log()
.all()
.statusCode(200);