Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have to extract all the "uniqueid" from this JSON array in Jmeter and then store these values in an array so that later I can use it with for each controller to append to the tail of another URL.

Can anyone help me how to do this in Jmeter.

Your help would be appreciated. Thanks!

{"groups":[
{
  "categoryid": 4003,
  "name": "Agarbatti",
  "properties": [
    {
      "name": "Take Photo",
      "type": "image",
      "displaytype": "image",
      "mandatory": false,
      "uniqueid": "1149"
    }
  ]
},
{
  "categoryid": 4005,
  "name": "Cigarettes",
  "properties": [
    {
      "name": "Take Photo",
      "type": "image",
      "displaytype": "image",
      "mandatory": false,
      "uniqueid": "1150"
    }
  ]
},
{
  "categoryid": "1001",
  "name": "Remark",
  "properties": [
    {
      "name": "Remark",
      "type": "string",
      "displaytype": "edit",
      "uniqueid": "Remarks",
      "mandatory": "true"
    }
  ]
    }
  ]
  }
See Question&Answers more detail:os

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

1 Answer

It's better to use JSONPath Extractor available via JMeter Plugins (you'll need Extras with Libs Set).

So on your data following JSONPath Expression:

$..uniqueid

Will return next structure:

["1149","1150","Remarks"]

See Using the XPath Extractor in JMeter guide (scroll down to "Parsing JSON") for more details and a kind of JSONPath cookbook.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...