-2

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:

But when I use console.log, it goes through all iterations, prints the value but falls on the next step

Any thoughts appreciated!

Pavel
  • 1

1 Answers1

0

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".