使用Xpath在Gatling中存储值

时间:2017-05-24 09:21:33

标签: xml scala xpath scala-gatling

我正在尝试从XML响应中存储uuid“EnquiryId”的值。我相信标准的方法是使用xpath,但我没有正确使用它并收到“java.util.NoSuchElementException:key not found:enquiryId”

响应示例:

<created_enquiry xmlns="http://www.test.com/energy-rest-enquiry.xsd">
    <enquiry_id id="1705230d-a64d-f075-e477-b11c3dabfa9c" link="value"/>
</created_enquiry>

代码示例:

http("REST  Users Post Submit Enquiry")
  .post("/rest/enquiry/enquiry")
  .headers(headersREST)
  .body(ELFileBody("RestSubmitEnquiry.xml"))
  .check(status.is(201))
  .check(xpath("/*/enquiry_id/@id").saveAs("enquiryId"))

谢谢

0 个答案:

没有答案