As a newbie in Postman, I'm a bit confused trying to log the test step.
When console.log is commented - the test works fine:
Any thoughts appreciated!
As a newbie in Postman, I'm a bit confused trying to log the test step.
When console.log is commented - the test works fine:
Any thoughts appreciated!
try to loop through the JsonData array and access to the key value "symbol" by using forEach. It will probably solve your issue.
Ex:
JsonData.forEach(element){
console.log(element.symbol)
};
then you can push the element to the array called "a".