实际上,Watir Webdriver可以测试的仍然是Site,不是APP,可以用于测试mobile device访问的mobile site的方式有三种:
1. 在一个真实的设备上,利用内置的browser进行测试
2. 在一个仿真的设备上,利用内置的browser进行测试
3. 在pc机上,将browser设置为mobile browser进行测试
对于在真实设备上进行测试,速度会相对比较慢,而且iOS还需要额外的费用。
而且还需要在iOS和Android的设备上先安装相应的driver。
所以简单的方法,是利用webdriver-user-agent gem 进行模拟测试
方法如下:
require 'watir-webdriver'
require 'webdriver-user-agent'
driver = UserAgent.driver(:browser => :chrome, :agent => :iphone, :orientation => :landscape)
browser = Watir::Browser.new driver
browser.goto 'tiffany.com'
browser.url.should == 'http://m.tiffany.com/International.aspx'
我们可以看到,关键的是:
driver = UserAgent.driver(:browser => :chrome, :agent => :iphone, :orientation => :landscape)
这个步骤,指明了你要使用的浏览器类型,仿真器类型,和视图方式。
该gem可以支持的浏览器有ff和chrome
可以支持的仿真器类型有:iphone, ipad, android_phone, 和android_tablet
支持的视图方式有两种,水平和竖直。 (portrait and landscape)