我正在使用放心的 lib 和范围报告进行报告,ValidatableResponse reponseManualLead = given().header("Accept", "application/json")
.contentType("application/json").header("Authorization", access_token)
.body(requestBody).log().body().when()
.put(losdevUrl + "/endUrl").then().log().all();log().all() :控制台日志中请求/响应的 Pritn 日志,我需要登录 extentreport ,我们可以这样做吗?ExtentTestManager.getTest().log(LogStatus.INFO, "Response is:<br>" + "here");
1 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
包含 JSON 请求/响应的推荐用法是通过MarkupHelper文档中的方式:http: //extentreports.com/docs/versions/4/java/#markup-helpers-codeblock
Markup m = MarkupHelper.createCodeBlock(json, CodeLanguage.JSON);
test.pass(m);
// shorthand
test.pass(MarkupHelper.createCodeBlock(json, CodeLanguage.JSON));
代码块将被美化并显示如下:
添加回答
举报
0/150
提交
取消