I am trying to parse a json response received in the previous Test Step, read a parameter's value from it, and use it in the next Test Step. I am clueless; I've been able to get the response ( The entire JSON
) into a property, however I tried using XPath
with ResponseAsXml
, but it always says "Missing Match for source XPath
".
Here is the JSON response received in the previous Test Step:
{
"access_token": "f4808125fc054de969a0cbe9ddec1ec3",
"token_type": "bearer",
"expires_in": 3600,
"refresh_token": "27c83771b36a0509873a7c7a3137b22d"
}
I would like to read access_token
here and transfer it to the next step. Any help will be really very appreciated.