Reputation: 483
Is there any plugin for Selenium to run automated tests for an (own) app on mobile devices (for the OS iOS, Android and Windows)?
I have searched for 2 hours but the information I found is quite confusing in my opinion.
Upvotes: 4
Views: 2796
Reputation: 127
In Today's date there are 2 tools that are dominating mobile app automated testing:
Why these tools:
Upvotes: 0
Reputation: 6815
At the Official Selenium Blog is stated that selenium is retiring their AndroidDriver and iPhoneDriver in favour of any of:
- selendroid
- ios-driver
- appium
Upvotes: 0
Reputation: 37816
You can use Selenium WebDriver for mobile apps testing. It needs to use "android-server-2.32.0.apk" for Android app testing. Download link: Android Driver server apk
Please look at this for AndroidDriver
Please look at this for IPhoneDriver
Upvotes: -1
Reputation: 4621
You can go with MonkeyTalk. It provides support for both iPhone and Android. There is also an IDE called MonkeyTalk IDE which is capable of recording and playing back your test cases using either a device or an emulator or simulator what ever you want to use.
For More info visit: MonkeyTalk Documentation
Upvotes: 2
Reputation: 3689
I recommend you to use robotium.
There is also another tool called MonkeyRunner which has a different approach.
Upvotes: 2