我有一个Acord Schema XML,它大量使用了Attributes。例如:
<Person id="Party_1">
<Name>John Doe</Name>
<Age>31</Age>
</Person>
当我使用UFT进行数据驱动时&#34;这个(从我的示例XML生成数据电子表格),我得到的电子表格只包含具有文本值的元素,并且缺少所有属性。
例如,上述XML将在电子表格中生成以下列:
Name | Age
John Doe | 31
我希望它应该像:
Party@id | Name | Age
Party_1 | John Doe | 31
为什么它没有为Party @ id提供列和值?
以下是一些具体图片: