Export all network traffic on a webpage

10,020

There is network monitor at Firefox dev tools. Take a look at mdn page where this feature is explained. It is possible to export HAR information from the Network panel by right-clicking and selecting "Save all as HAR". HAR is a network request archive format used by many performance and request analysis tools.

You can also use firebug addon which has also his own network monitor and extract data by using the netexport firebug extension.

For automated process (that will open the browser, then firebug, then the page and then will export data), you probably need the auto-tool used for testing firefox which is called mozmill

Share:
10,020

Related videos on Youtube

Vincent
Author by

Vincent

Updated on September 14, 2022

Comments

  • Vincent
    Vincent over 1 year

    I'm looking for a tool that would list all the network information that a html dom (javascript etc as well) page loads. Exeactly what chrome shows on the developer tools/Network tab.

    I've tried the Chromium-browser under ubutu to export this data but was not able to get the networking stats.

    So what I would need is to parse a request preferably thru the command line (ubuntu/debian) which would return the networking stats.