bruno
bruno copied to clipboard
I want to see the request body corresponding to the request I sent, but there is nothing in the developer tool view, and the current request cannot be captured in real time.
+1
But maybe the developer tools is not the right place for this. Maybe in the timeline tab.
@bite-Wilson-Liang The request is sent on the Electron side, you won't be able to see it in the devtools.
However you can access this in pre request scripts :
console.log(req.body)
@bite-Wilson-Liang The request is sent on the Electron side, you won't be able to see it in the devtools. However you can access this in pre request scripts :
console.log(req.body)
Thank you~