I have developed a response map for my response. I store the response in a variable using Store Response step property and make it a global variable. Say the variable name is "testcase_data".
How do I access this global variable in my query command. I have tried the following:
[query testcase_data (.//value)] --> This returns an error that variable cannot be found. This is understandable because accessing global variable requires the use of gget command.
[query [gget testcase_data] (.//value)] --> This returns an error "Invalid query".
[query \[gget testcase_data\] (.//value)] --> This returns an error "Unable to evaluate".
Any ideas?
-Adeel.