我想从Karate Framework中的JSON Api响应中获取特定密钥的计数。
{
{"user" : "a"},
{"user" : "b"},
{"user" : "c"}
}
我想从上面的JSON中获取响应用户的数量。
答案 0 :(得分:0)
请仔细阅读文档和示例,您可以为此直接使用JavaScript:
* def response =
"""
[
{"user" : "a"},
{"user" : "b"},
{"user" : "c"}
]
"""
* def len = response.length
* match len == 3