- 将 java 与 selenium 一起使用
- 我在我的代码中捕获了完整的 json
- 在我的 json 中有两个节点“Service1”和“Service2”
- 我的要求是获取“Services1”节点的详细信息——>数据节点
- 但我无法仅提取带有数据节点详细信息的 Service1(我不想要“测试”节点详细信息。
问题:您能帮我从 Service1 中提取数据吗?仅使用 java 代码从带有数据节点的数据节点中提取数据?我正在使用 selenium 和 java。我需要这个脚本之一。
Actual response:
{
"Service1": [
{
"data": {
"status": false,
"type": "A",
"order": 1,
"Version": "v6"
},
"test": {
"ModuleID": "123456",
"BoxID": "a777",
"Url": "https://google.com"
}
},
{
"data": {
"status": true,
"type": "B",
"order": 1,
"Version": "v2"
},
"test": {
"ModuleID": "123456",
"BoxID": "a777",
"Url": "https://google.com"
}
}
],
"Service2": {
"data1": {
"status": false,
"type": "c",
"order": 1,
"Version": "v6"
},
"dashboard": {
"ModuleID": "123456",
"BoxID": "a777",
"Url": "https://google.com"
}
}
}
Expected data :
[
{
"status": false,
"type": "A",
"order": 1,
"Version": "v6"
},
{
"status": true,
"type": "B",
"order": 1,
"Version": "v2"
}
]