Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to import HAR file to excel

I have to know some informations about documents loaded by a browser (e.g. chrome ) for that inspect element is good choise. Now I have to import data to an excel. Inspect element allow to save data as .har ( http archive) file.

How I can save network informations from inspect element to excel. My browser is Google chrome. I have found an answer here that gives information but no information about excel.

like image 661
Hafiz Muhammad Shafiq Avatar asked Jul 27 '15 08:07

Hafiz Muhammad Shafiq


1 Answers

You can download the HAR file from Google or Firefox browser and use this online tool to convert the HAR file to CSV.

Link to online tool: https://hintdesk.github.io/networkhartocsv/input

Just select the exported HAR file and let the tool parse it. Then select the column you want to export and export the current rows to CSV.

You can also filter out the rows which are not relevant.

like image 163
servuskevin Avatar answered Oct 09 '22 07:10

servuskevin