Questions tagged [har]

har is the HTTP Archive format that can be used by HTTP monitoring tools to export collected data.

har, the HTTP Archive format, is adopted by browsers and tools to persist network analysis data captured (collected) monitoring the page activity (i.e. to see what resources a web page is using, bandwidth and cache usage, and so on). har files (HTTP tracing logs) can be processed by specific statistical software or visualized by tools such as for example harviewer. See also the HAR 1.2 Specification

166 questions
4
votes
1 answer

Create a har file with xhr request only in chrome dev tools

Is there a way to create a har file with xhr request only in chrome dev tools? Even though I can filter the requests in dev tools, when I save it as a har file, it contains all the requests. If the dev devtools doesn't support that, is there a…
Sandeepa
  • 2,522
  • 3
  • 14
  • 34
4
votes
0 answers

Saving files is not enabled in hosted mode. Please inspect using chrome://inspect

Testing Samsung TV, and am trying to save the data as HAR in Tizen web developr tool, however, receiving an error message when trying. What may I need to change in the settings (?) to enable saving files? Saving files is not enabled in hosted mode.…
4
votes
1 answer

Selenium read network data using HAR Export xpi

I am using HAR Export XPI to get the network traffic for the pages traversed using selenium. I am adding the XPI to ffv46 (as cannot add XPI to latest ff browsers). I have used the below mentioned mentioned profile settings…
Kallol Ghose
  • 161
  • 7
4
votes
3 answers

Automate "Save as HAR with Content"

I am familiar with how to use the Google Chrome Web Inspector to manually save a webpage as a HAR file with the content. I would like to automate this. In my searches for tools to automate the generation of a HAR file, I have found some solutions,…
Teddy
  • 17,609
  • 2
  • 27
  • 42
4
votes
1 answer

How to generate HAR file from an HTML file?

If I use wget, and get an html file from a URL. How can I generate a HAR file from that HTML file. Any open source implementations for generating har files from html files? Once the HAR file is generated I can read data from the HAR file using…
Vivek Sharma
  • 3,712
  • 6
  • 34
  • 48
3
votes
2 answers

Can I export HAR file from Chrome Dev tools, which contains only the filtered requests from Network tab?

In Chrome Dev tools/Network tab I have filtered the requests using filter like "-.json -.png -.woff2". I want to export the remaining requests (those which are visible on the screen). However when I use "Export HAR..." icon, in the output HAR file I…
Jaxx
  • 739
  • 1
  • 5
  • 9
3
votes
0 answers

Understanding Selenium + browsermob-proxy + protractor + AngularJS

What I have: several integration test specs written in Jasmine for my AngularJS app (they navigate through my entire app) What I want: perform a network monitoring of my app and export the data using HAR Naive solution: just write a script which…
Marcos
  • 4,607
  • 7
  • 29
  • 57
3
votes
1 answer

No headers in HAR response

I parse website 'http://ok.ru'. To get data from the post request I need to send a specific token that is generated by Javascript on the website and this token is contained in headers. So I thought maybe one solution would be to open the website,…
3
votes
4 answers

How to get total web page response time from a HAR file?

In the following image, I want the total response time from the webpage. I can't seem to find it in the file sample HAR file, i.e. 38.79s in this case. Does anyone know how to get this? I am going to use Selenium along with Firebug and NetExport to…
Neo84
  • 187
  • 2
  • 16
3
votes
5 answers

Can't capture HAR using Python Selenium Script with BrowserMob-Proxy

Goal: I want to run a Selenium Python script through BrowserMob-Proxy, which will capture and output a HAR file capture. Problem: I have a functional (very basic) Python script (shown below). When it is altered to utilize BrowserMob-Proxy to…
Civic_Matt
  • 31
  • 1
  • 4
3
votes
1 answer

phantomjs how to get establish connection time

I want to get establish connection time to har like firebug providing by phantomjs ! Through phantomjs function page.onResourceReceived, I can only get start time and end time. I think the time between request to the start time is waiting time , the…
3
votes
1 answer

Is there any way I can get the HAR information with js?

I was wondering if there is some way that I can get through js the HAR information collected by the browser. The idea is that in some cases I can send these back to the server so we can better monitor browser loading times of our customers.
ptheofan
  • 1,740
  • 2
  • 15
  • 26
3
votes
1 answer

HAR parser and reporting tool

Is there any parser tool for HAR(Http archive) which generates csv or excel output of page loading times? I know there are HAR viewer but I need the output as csv for plotting. Note: It is easier to write a parser and generate the csv output(which…
Rajasankar
  • 908
  • 1
  • 18
  • 40
2
votes
1 answer

How to put .HAR file exported from Chrome to import into JMeter?

I export all the network calls from chrome to an hAR file format which I again want to import into JMeter to use the network call for load testing. How can I do it? I have heard about floor.io, it isn't working anymore.
QA_hacks
  • 147
  • 2
  • 11
2
votes
0 answers

Is there a way to 'Save HAR with content' in Chrome with a hotkey shortcut?

I would like to periodically save HAR with content on a website. I tried using headless chrome, but I found out that if I'm using headless chrome, there's only a way to do this with using browsermob-proxy. Using a proxy gives me problems, because…
user3656099
  • 115
  • 10
1
2
3
11 12