Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
613 views
in Technique[技术] by (71.8m points)

How can I access nested JSON variable in Karate fed from Gatling?

I have a JSON File feeder which has JSON that is nested like:

{
  "id": "X",
  "context": {
    "id": "Y"
  },
  "username": "Z"
}

And I can successfully access the id and username in my Karate file using: #(__gatling.id) etc. However, when I try and access #(__gatling.context.id) it comes up null.

Gatling has obviously parsed it into a Map but I'm unclear now how to access this variable?

question from:https://stackoverflow.com/questions/65861945/how-can-i-access-nested-json-variable-in-karate-fed-from-gatling

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I don't know how you are setting up the feeder data. Here is the example in the docs: https://github.com/intuit/karate/tree/master/karate-gatling#feeders

val feeder = Iterator.continually(Map("someKey" -> "someValue"))

And then #(__gatling.someKey) would work. So try the Map (JSON) like this and it should work. And please use the new 1.0 RC stream as this is going to be released soon: https://github.com/intuit/karate/wiki/1.0-upgrade-guide

If it still doesn't work, please follow this process: https://github.com/intuit/karate/wiki/How-to-Submit-an-Issue


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...