父级为null时,Soap UI会阻止提取子值

时间:2018-02-15 14:51:04

标签: rest soapui

当我需要在Soap UI中从JSONPath中提取数据时,我遇到了问题。

实施例: REST返回带有以下数据的JSON:

[
   {
      "service": {
         "employee": null
         "id": 123 
      }
   },
   {
      "service": {
         "employee": {
            "name": "Tom"
            "lastName": "Smith"
         }
         "id": 124
      }
   }
]

然后我想用代码提取名称:

$.[0].employee.name

问题是当employee为null时,提取testStep失败。 我认为复选框Set null on missing source将解决我的问题。当TestStep单独运行时,它会按预期返回null,但在TestCase中运行它会失败。

有没有办法解决这个问题?感谢。

0 个答案:

没有答案