testng reporter.log对待“<”作为“[”

时间:2012-08-07 14:21:45

标签: java html testng

我正在尝试将屏幕截图添加到我的testng报告中,但是html“尖括号”被记录为方括号,因此报告如下所示。其他人遇到这个问题?

我的代码:

FileUtils.copyFile(scrFile, new File(filename));
Reporter.setCurrentTestResult(testResult);
Reporter.log("<a href=\"" + filename + "\">Screenshot</a>");

生成的报告:

[a href="filename.png"]Screenshot[/a]

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

我遇到了同样的问题。尝试更新testng插件(http://testng.org/doc/download.html)并将-Dorg.uncommons.reportng.escape-output = off行放入Run-&gt; Run Configurations-&gt;(x)=字段VW参数中的参数。