Search code examples
javascriptautomated-testspostmanpostman-collection-runnerpostman-testcase

I Want To Log All Error Message in Postman console


Hi Guys Im New In Postman I Want To Log All Error Message In Postman Console i have many error message in response whats is the code i dont know how log all errors

This is The Response

this is my code by the way

new one


Solution

  • You can do this

    const errors = _.map(Data.errors, _.property("message"));
    console.log(errors);
    

    Result:

    enter image description here