Xml Test Node-----xml test node报告中插入图片

如何在TestCase报告中插入图片,图片的插入需要基于Comment节点。

如下图

<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<testmodule title="Demo" version="1.1">

<testgroup title="Preparation test">

<testcase title="image test" ident="1.1">

<comment>

<text>Hello World</text>

<resource width="400px" height="400px">CanOE.png</resource>

</comment>

</testcase>

</testgroup>

</testmodule>

这里需要注意两点:

1.图片的位置需要和TestReport生成的路径保持一致

2.在<resource></resource>中的图片名称前后不能有空格。

猜你喜欢

转载自blog.csdn.net/WlzSnail/article/details/129448012