使用 XPATH 从 XML 文档中检索一组多个节点

问题描述 投票:0回答:0

我在 readyAPI 工作,我有一个来自 JDBC 请求的 xml 响应,例如:

<Results>
   <ResultSet fetchSize="10">
      <Row rowNumber="1">
         <ID_Question>72</ID_Question>
      </Row>
      <Row rowNumber="2">
         <ID_Question>73</ID_Question>
      </Row>
      <Row rowNumber="3">
         <ID_Question>74</ID_Question>
      </Row>
      <Row rowNumber="4">
         <ID_Question>75</ID_Question>
      </Row>
      <Row rowNumber="5">
         <ID_Question>76</ID_Question>
      </Row>
   </ResultSet>
</Results>

我想检索所有

ID_Question
元素作为列表以在休息请求中使用它们

我试过像这样使用 XPath 进行财产转移:

//*:ID_Question

但它只返回第一个值。

我应该用什么来检索所有的值?

感谢您的帮助!

xml xpath jdbc ready-api
© www.soinside.com 2019 - 2024. All rights reserved.