我正在比较来自两个不同端点的两个JSON响应,并尝试使用Rest Assured在自动化中进行匹配。
除了一个键“ secondsToNextEvent”由于获取请求中的时间差异而在两个Json中具有不同的值之外,其他都很好。
{
"englishName": "Serie A",
"boCount": 103,
"termKey": "serie_a",
"name": "Serie A",
"eventCount": 17,
"id": 1000095001,
"secondsToNextEvent": 1649,
"sport": "FOOTBALL"
},
所以我想比较两个Json,但想忽略“ secondsToNextEvent”。有什么方法可以做到吗?