Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to parse an HAR file in java

I want to read the information from an HAR extension file using Java. I am using Selenium Webdriver for capturing the timings, it generates a .har file.

I have seen we need to use some external libraries for this. I failed to find any links to download that library. Is anyone aware of what library I need and where I can find it?

like image 717
Udanesh N Avatar asked May 09 '26 07:05

Udanesh N


1 Answers

You can try to use these libraries in Java to read HAR file:

  1. https://github.com/sdstoehr/har-reader
  2. https://sites.google.com/site/frogthinkerorg/projects/harlib (introduction to the library)
  3. http://sourceforge.net/projects/benchlab/files/HarLib/
like image 89
userpal Avatar answered May 11 '26 19:05

userpal