为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 ExtentReports 日志中记录 RestAssured Request

如何在 ExtentReports 日志中记录 RestAssured Request

倚天杖 2022-05-21 16:56:09
我正在使用放心的 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));

代码块将被美化并显示如下:

//img1.sycdn.imooc.com//6288a9460001664d04480395.jpg

查看完整回答
反对 回复 2022-05-21
  • 1 回答
  • 0 关注
  • 93 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信