Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find out the Page Download Time/Size in IE?

Is there any free tool for IE so that I can know the page download time and download size?

I'm using IE Web Developer tool but it doesn't show download time/size.

For FireFox, there is an addon called Lori which does it.

like image 613
The Light Avatar asked Jun 06 '12 15:06

The Light


1 Answers

Indeed the IE11 dev tools appears to be lacking that nice total time taken. To get around this, in IE11 you can export the data as a CSV. There is an export button next to the start/Stop button on the Network tab.

  1. Open the CSV, observe that the times for each component are given in both milliseconds and seconds.
  2. Add a new empty column next to the 'Taken' column.
  3. Filter the Taken column to only show 'ms'.
  4. Use the Text to columns feature to move the letters ms to the next column (make the delimiter a space. Note that < 1ms figures will move the 1 to the new column. So if you are being really granular then you need to find these and move the 1 back to the Taken column and remove the < that is in there.)
  5. Use the SUM feature to get the total ms.
  6. Repeat this process but this time for the seconds.

Convert your ms to seconds and add this figure to the total seconds and you will have your total page load time.

like image 172
BleepingComputer Avatar answered Oct 02 '22 02:10

BleepingComputer