如何使用 Junit - Serenity 报告获取和显示 POST 请求主体内容

How to fetch and display the POST Request Body Content in Rest Assured with Junit - Serenity Report

我正在使用带有 Rest assured Junit5 的 Serenity BDD 框架。 在索引文件报告中使用 'mvn clean install' 命令创建 post 请求时,我看不到请求正文。它显示我为 json 文件提供的路径。但不是实际的 POST 请求正文内容。

有人可以建议如何在索引文件报告中显示 POST 请求正文内容。

第 1 步:将 json 文件转换为字符串。

String payload = new String(Files.readAllBytes(Paths.get("path_to_file")));

第二步:放入请求正文

given().contentType(ContentType.JSON).body(payload)...