Postman: How do you delete cookies in the pre-request script?
问题 All the postman cookie-management answers I've seen refer to either the browser extension (open chrome, delete cookies viz interceptor etc) or with the app, using the UI to manually manage cookies. I would like to delete certain cookies in my pre-request code as part of scripting my API tests. (delete them programmatically) The Sandobx API docs mention pm.cookies so I tried if (pm.cookies !== null) { console.log("cookies!"); console.log(pm.cookies); } But the pm.cookies array is empty. Yet in