Are there any automated browser testing tools for iOS and Android browsers?

I know both Selenium and Watir, but none of them offer support for iOS and Android browsers (including touch gestures)

Is there anything that does? Any recommendations?

If there is no existing software, can anyone recommend a good approach to automatically test mobile browsers (other than JS unit tests)?

+6
source share
1 answer

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

+2
source

Source: https://habr.com/ru/post/885977/


All Articles