Support for (manual) HAR export has been included directly in Firefox 42 1. Start the browser, open Firefox developer tools (F12) 2. Select the Network panel, reload the page 3. Right click in the panel and pick "Copy All as HAR" or "Save All as HAR"
There is also an extension that allows to automate the export - HAR Export Trigger https://github.com/firebug/har-export-trigger Install the extension and use the following script on your page to auto-trigger HAR export: var options = { token: "test", // Value of the token in your preferences getData: true, // Set to true if you want to also get HAR data title: "my custom title", // Title used for the HAR file jsonp: false, // Set to true if you want HARP fileName: "my test har file %Y, %H:%M:%S" // Name of the file }; HAR.triggerExport(options).then(result => { console.log(result.data); }); Note that you need Firefox 42+ (to run this extension) Honza On Sunday, August 9, 2015 at 4:18:38 PM UTC+2, akshay monga wrote: > > I am still getting " window.NetExport.triggerExport " as NetExport as > undefined in browser console. > > Please is there any fix for this? > > Akshay > > On Tuesday, February 17, 2015 at 8:20:59 AM UTC-8, Jan Honza Odvarko wrote: >> >> Firebug 3 alpha 9 has support for automated HAR export, see: >> https://groups.google.com/forum/#!topic/firebug/oJwLFniRs-E >> >> Feedback appreciated! >> >> Honza >> >> >> On Thursday, February 5, 2015 at 7:21:08 PM UTC+1, Jan Honza Odvarko >> wrote: >>> >>> 4 weeks >>> >>> Honza >>> >>> On Thursday, February 5, 2015 at 7:01:52 PM UTC+1, Arie Hoenel wrote: >>>> >>>> Honza do you ETA for this issue ? >>>> >>> -- You received this message because you are subscribed to the Google Groups "Firebug" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/firebug. To view this discussion on the web visit https://groups.google.com/d/msgid/firebug/29221b2c-3117-435a-9811-ee3eed692d3d%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
