我正在使用Serenity BDD(Thucydides),Cucumber和RestAssured的框架。我希望能够在我的测试结果HTML页面中显示我获得的响应。
有没有办法做到这一点?
谢谢!
答案 0 :(得分:1)
您可以将有效的HTML文本作为参数传递给步骤库中的@Step方法。这将在步骤详细信息页面的报告中显示为格式化文本。
这可以通过创建一个带有String参数的名为description的虚拟@Step方法来实现。在运行时,测试为此方法提供格式化的html文本作为参数。
@Step
public void description(String html) {
//do nothing
}
public void about(String description, String...remarks) {
String html =
"<h2 style=\"font-style:italic;color:black\">" + description + "</h2>" +
"<div><p>Remarks:</p>" +
"<ul style=\"margin-left:5%; font-weight:200; color:#434343; font-size:10px;\">";
for (String li : remarks) html += "<li>" + li + "</li>";
html += "<ul></div>";
description(html);
}
更全面地描述了这种方法here。