Reputation: 18798
How can i test webpage/app rendering for slow speed connection?
Upvotes: 0
Views: 144
Reputation: 164709
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.
Upvotes: 0
Reputation: 6544
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.
Upvotes: 0
Reputation: 2190
Use Fiddler web debugger - it has a feature to simulate slow modem speeds.
Upvotes: 2