「jsonFieldName」という変数に格納されている値の場所を使用して、JSON 応答から自転車ブランド「Cannondale」を抽出しようとしています。
または、次の構文を使用してブランド値を正常に抽出できます。
def brand = json.store.bicycle.brand
ただし、要素の場所を変数に保持したい。理由は、自動化スイートの一部として Json Response で複数のアサーションを反復できるようにしたいからです。
誰かがこれを行う方法を親切にアドバイスできますか?
以下は、変数に場所を格納するために現在使用しているスニペットです。しかし、それは機能せず、常にブランドを「Null」として返します:(ありがとう。
def response = ('''{
"store": {
"book": [
{
"title": "Sword of Honour",
"category": "fiction",
"author": "Evelyn Waugh",
"@price": 12.99
},
{
"title": "Moby Dick",
"category": "fiction",
"author": "Herman Melville",
"isbn": "0-553-21311-3",
"@price": 8.99
},
{
"title": "Sayings of the Century",
"category": "reference",
"author": "Nigel Rees",
"@price": 8.95
},
{
"title": "The Lord of the Rings",
"category": "fiction",
"author": "J. R. R. Tolkien",
"isbn": "0-395-19395-8",
"@price": 22.99
}
],
"bicycle": {
"brand": "Cannondale",
"color": "red",
"price": 19.95
}
}
}''').toString()
//store location of json property I want to extract in property called jsonFieldName
def jsonFieldName = "store.bicycle.brand"
def json = new JsonSlurper().parseText (response)
//perform extraction
brand = json."${jsonFieldName}"