How do I extract the json object name from the below json data in Jmeter
[
: {
: : "name":"x",
: : "age":"50",
: : "gender":"Female"
: }
]
I am doing this $..name in the JsonPath Extractor which is giving me this in the variable I extracted to
name=["x"]
Is there a way I could just get name=x without the array format
Or is there a way I can extract just the x from ["x"]?
Thanks
$..name[0]${name_1}after getting the array with$..name.newNameas justxbut when I am trying to usenewNamein other requests by passing as${newName}it is being passed as${newName}only but not it's valuex${__V(${newName})}?