Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to test website for ipad without having ipad , in both condition Portrait and landscape?

How to test website compatibility for iPAD without having iPAD , in both condition Portrait and landscape?

on Windows PC

like image 557
Jitendra Vyas Avatar asked Apr 23 '10 03:04

Jitendra Vyas


2 Answers

also, there is another web-site: http://ipadpeek.com/

but, if you have a special css file for ipad, this site cannot show it. you should change your main css file with ipad specific one...

also, you can rotate your ipad in ipadpeek.com

edit: there is an app for looking your layout on ios device here.

like image 184
Erman Taylan Avatar answered Sep 20 '22 10:09

Erman Taylan


You'll probably have to use a windows browser to fake the browser-agent header. This page gives more information as well as the browser agent string.

You could use Chris Pederick's User Agent Switcher in Firefox, but you won't get webkit rendering. The best option is probably to use the developer tools in Safari and change the browser agent in the Develop menu.

You should also make sure your screen size matches the iPad (1024x768 if I'm not mistaken). To test landscape, just change the screen size.

What you won't get is multitouch and gesture testing...

What are you actually trying to test? If it's just a website, that should be sufficient.

like image 35
Damovisa Avatar answered Sep 21 '22 10:09

Damovisa