-1

Does Firefox Developer have a Preview response tab under Network monitoring like Chrome?

(screenshot below):

enter image description here

Here is a screenshot of Firefox Developer, I don't see the equivalent tab. I read through the Firefox documentation on Network monitor toolbar, and I didn't see what I was looking for. Any help would be greatly appreciated.

enter image description here

The reason is because I am learning about web scraping api's, and I want to preview the response in the json file similar to that in Chrome Developer (screenshot 1).

Thank you for any help!

Seraph
  • 374
  • 3
  • 14

1 Answers1

1

The Response tab is the place to look for the preview.

Here an example of a formatted JSON response:

Response tab of the Firefox DevTools Network Monitor

By default it shows you a preview of the response if there is a formatted preview available for the content. If you want to see the raw response, you can do so by toggling the Raw option at the top of the tab.

For any response the DevTools don't provide a preview for you'll just see the raw response right away and there isn't a Raw toggle. The same may happen if the response can't be interpreted correctly due to an incorrect Content-Type header returned by the server.

Sebastian Zartner
  • 18,808
  • 10
  • 90
  • 132