将包含空元素的XML文件加载到Excel 2013中

我正在尝试创建xml映射,以便将JUnit格式的.xml报表文件加载到Excel 2013表单中。 我在加载跳过的测试信息时遇到了一些困难。 我遵循以下JUnit格式指南:http://help.catchsoftware.com/display/ET/JUnit+Format

典型的跳过的测试用例XML元素如下所示:

<testcase classname="example classname" name="example testname">
    <skipped />
</testcase>

通过测试的测试用例中没有额外的元素,所以它们看起来像这样:

<testcase classname="example classname" name="example testname">
</testcase>

我希望能够区分跳过的测试和其他测试。

在我的Excel表格中添加映射到该XML元素后,我可以创建一个链接到那些映射“跳过”元素的列。 但是,因为他们不存储任何数据,所以这些列值是空的,即使是跳过的测试用例。 有什么方法可以将关于跳过的元素的信息读入我的工作表中?

链接地址: http://www.djcxy.com/p/64265.html

上一篇: Loading XML files with empty elements into Excel 2013

下一篇: How do I get the Junit test results using Email