Postman javascript debugging support

i have found postman has Dev Tools gui function, like chrome browser F12 dev tool, i want to know whether postman support javascript debugging support? for example, set breakpoint, step in function, step out function, step over, etc

1 Like

As far as I know this is not possible because any code that you run is executed in a sandbox environment and you loose cannot set breakpoints or debug the code.

It would be very nice to have something like this.

I agree with @vdespa.

Something you can do if you’re having an issue is to do so console logging. Just dump your variables in a console.log statement.

console.log(myVariable);

Open up the console (Ctrl + Alt + Q) and view your logs.