Network Computing is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.

Test Web Page Load Time with a Free Chrome Extension

 You would think measuring how long it takes for a web page to load would be a trivial topic. Unfortunately, this can be anything but simple, and I'm sure those of you who tried can attest to that. 

Loading a webpage involves quite a bit of network and coding interaction to present the user with a webpage within a reasonable time.

When I was teaching an onsite class, someone asked if we can use their intranet portal in our live exercises. When I asked why, he said that everyone complains about how long it takes to load the main page and blames the network. We started a Wireshark capture (since it was a Wireshark Class) and noticed that it took the webpage over 1 minute to completely load with many pauses along the way. I asked where the server was located, and they said, "one floor down in the data center.” I then asked if there are any other applications or websites on that server and they said, “yes." So right there we realized it couldn't be the network or the physical server. When we reviewed the trace, we determined that nine images were 8 to 10 MB each. Then we dug a bit deeper and found a lot of php coding errors as well as broken links.  In the end, it was just a poorly designed page.

(Image: Pixabay)

To understand where performance problems can creep in, I want to walk you through some of the high-level aspects of loading a webpage:

  1. You enter www.networkcomputing into your browser address bar
  2. Your computer needs to use ARP to resolve its router IP address to a MAC address
  3. Resolve the domain name to an IP address
  4. Load the main web page and process any php, CSS, or other commands
  5. As the page loads, there will be references to other domain names
  6. Resolve other domain names
  7. Rinse and repeat ;)

Load time testing

Trying to develop a consistent way to measure the load time can be tricky at best. I will walk you through a manual methodology, so you clearly see the steps involved. Understanding the methodology is helpful to use when reviewing how you may be performing this same task.

This is my methodology used from a Microsoft client computer:

  1. I installed the Chrome Page Load Time extension or search for Page Load Time
  2. Start Chrome and load the page you want to test and wait for it to load
  3. Clear your Chrome temporary files by pressing Ctrl+Shift+Del, check the Cached images and files and click Clear Data
  4. Go to command prompt as administrator and clear arp cache arp –d
  5. Clear DNS cache ipconfig /flushdns
  6.  Press the Refresh icon or F5
  7. Record time reported by the extension
  8. Repeat Steps

I'm sure you can find a way to automate this process, but at that point, you might want to look into a product that does that already. If you already have a product that does this automatically, you should compare your manual results with your current or proposed solution.

In my opinion, if the methodology is repeatable and understood then your results are “right.” Many products will report different results because they measure differently, take averages, or don’t clear caches.  Don’t get too caught up on trying to figure out who is right. I would rather you get comfortable and understand your solution and results.

Watch the entire process in this video: