6

I am aware of both Selenium and Watir, but neither seem to offer support for iOS and Android browsers (including touch gestures)

Is there anything out there that does? Any recommendations?

If there is no existing software, can anyone recommend a good approach for automated testing of mobile browsers (over and above JS unit tests)?

DanSingerman
  • 36,066
  • 13
  • 81
  • 92
  • What are you testing (rendering capabilities, performance, etc.)? – FeifanZ Apr 20 '11 at 22:39
  • @Inspire48 Functional testing. Analogous to what you'd use selenium for in the environments it supports. Ideally for use in a continuous integration environment – DanSingerman Apr 21 '11 at 13:38

1 Answers1

2

Documentation of the WebDriver says that Selenium (to-be Selenium 2.0) supports both Android and iOS, the real device and the simulator (though, obviously, you need a developer license to use it on a iOS physical device). From there on, it's just a matter of using Selenium 2.0 and writing tests for it.

zneak
  • 134,922
  • 42
  • 253
  • 328