views:

62

answers:

3

How can i test webpage/app rendering for slow speed connection?

+2  A: 

Use Fiddler web debugger - it has a feature to simulate slow modem speeds.

chriswattsuk
A: 

What you're concerned with is what is actually going over the wire. A tool like Fiddler will help you understand how much data is being transmitted. You can then work to whittle it down to as little as possible.

Bramha Ghosh
A: 

Firebug's net console will tell you what each page is downloading, how much and how long its taking. Tools like YSlow and Google Page Speed will give you suggestions about how to speed up the page both loading and rendering.

Schwern