2

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

我的代码:

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

生成的报告:

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

2 回答 2

2

已知问题:
https ://github.com/cbeust/testng/commit/6a577ffe7ea59c27434829ae3f11f0074b1d7cf5

于 2012-08-07T14:26:31.283 回答
1

我曾经也有过一样的问题。尝试更新 testng 插件(http://testng.org/doc/download.html)并将行 -Dorg.uncommons.reportng.escape-output=off 放入 Run->Run Configurations->(x)=Arguments 中字段大众参数。

于 2013-03-19T09:13:14.917 回答