Babiker
Babiker

Reputation: 18798

How to test wepages/apps for slower speed inviroments

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

Upvotes: 0

Views: 144

Answers (3)

Schwern
Schwern

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

Bramha Ghosh
Bramha Ghosh

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

cw84
cw84

Reputation: 2190

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

Upvotes: 2

Related Questions