Selenium plug-in for testing mobile applications or any other best and suitable tools for testing mobile applications

Is there any plugin for Selenium to run automatic tests for my own application on mobile devices (for iOS, Android and Windows)?

I searched for 2 hours, but the information I found is pretty confusing in my opinion.

+4
source share
5 answers

I recommend you use robotium .

There is also another tool called MonkeyRunner , which has a different approach.

+2
source

You can go with MonkeyTalk . It provides support for both iPhone and Android. There is also an IDE called the MonkeyTalk IDE that is capable of recording and playing back your test cases using either the device, or the emulator or simulator that you want to use.

Visit Details: MonkeyTalk Documentation

+2
source

The Official Selenium Blog says selenium is retiring its AndroidDriver and iPhoneDriver in favor of any of:
- selendroid
- of ios-driver
- appium

0
source

There are currently two tools that dominate the automated testing of mobile applications:

  • Appium (Open Source)
  • SeeTest (License)

Why are these tools:

  • Both use the basic tools of iOS and Android sdk and provide various methods for automating your test cases.
  • Both have good online support.
  • Both support the same script that will be launched on both iOS and Android (cross-platform broadcast)
  • Both support multiple languages ​​for coding scripts (C #, Java, etc.).
  • Both support multiple frameworks - TestNG, JUnit, etc.
0
source

You can use Selenium WebDriver to test mobile applications. To test Android applications, you must use "android-server-2.32.0.apk". Download link: Android Driver server apk

Please look at AndroidDriver

Please look at the iPhoneDriver

-1
source

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


All Articles