How to export HAR file

HAR files are great for providing additional information about HTTP requests.

These are really useful for debugging difficult issues.

This article will help you creating HAR files and give you a little more information about it.

Step by Step

One of the easiest ways to generate the HAR file is using Google Chrome. You can follow these steps:

  1. Open the page you want to inspect on Google Chrome.

  2. Select the Chrome menu at the top-right of the browser window.

  1. Check the box "Preserve Log" and make sure it is recording the log (red ball on the left).

  1. Refresh the page and navigate, or interact with the page until reproduced the problem you have been experiencing.

  2. On the Network tab, click the right button on the list of requests and select "Save as HAR with content".

  1. Save the HAR file to a convenient place and send this over to support

 

Firefox

 

  1. Click on menu on the top right corner and select ‘Web Developer’ from the dropdown.

     

  2. Once the view changes, click on Network on the next screen.

  3. From here, right click on any area of the network requests and select save all as HAR.

  4. Save the HAR file to a convenient place and send this over to support

Console logs

This request might be asked from support to extract console logs. These logs help identify specific issues and narrow down the cause much more quickly. Below are instructions on how to extract this within the Dev Tool.

  1. From the Settings drop-down menu

  2. Select More Tools and then Developer Tools(Ctrl+Shift+I or F12)

  3. Switch to the console tab

  4. Replicate the issue and right click on the console and hit save as. This will save the log locally.

  5. Copy the file and submit it or drag and drop to the support ticket.

     

  6. Â