Thursday 12 May 2016

TOP 5 OPEN SOURCE AUTOMATION TOOLS FOR IOS AND ANDROID



In market there are many tools and frameworks for mobile application automation testing but here I have focused on 5 top open source iOS and android automation tools are most widely used and have wide community support.

1) CALABASH (FOR ANDROID AND IOS)

Calabash
What it is – calabash is open source acceptance testing framework for android and iOS automation. Calabash provides separate library for android and iOS automation. It’s a cross platform framework and supports cucumber which enables to express behaviour of app in natural English language implementing BDD (Behaviour Driven Development).
Calabash provides a bridge that allows cucumber tests to run and validate on iOS and Android. Cucumber tests are written as list of statements which forms number of test scenarios. All the statements in cucumber are defined using Ruby language.
In Calabash, a cucumber statement must be defined only once but can be repeated for different scenarios of a cucumber script.
The actual tests are written in Gherkin, backed with Ruby code, and run in the context of the Cucumber Framework.

PROS

  1. Large Community Support.
  2. Simple and expressive English like test statements
  3. Supports all actions on screen such as swipe, pinch, rotate, tap.
  4. Large and enthusiastic community.
  5. Cross platform development support(same code works for android as well as iOS devices)

CONS

  1. After failure of test steps, all subsequent steps will be skipped. This can cause more severe product issue to be missed out.
  2. Takes time to run tests as it always installs App first by default. However this setting can be overridden by hook that we can configure in code.
  3. Requires calabash framework to be instrumented inside ipa file for iOS.
  4. We must have code of App in case of iOS.
  5. Not friendly to languages other than ruby.

2) APPIUM (ANDROID AND IOS)

Appium
What it is – Appium is an open source test automation framework by sauce labs for use with native, hybrid and mobile web apps. Appium library functions inside framework make calls to Appium server running in background which operates the connected device. It uses JSONWireProtocol internally to interact with iOS and Android apps using Selenium’s WebDriver.
Unlike calabash which mainly supports development in ruby, Appium can be used in framework with language of your choice from Java, python, ruby and all other that selenium-webdriver supports.
Appium server gets hosted on Node server. One can start Appium server by firing set of Node commands. If using Appium Standalone Application as server (installable downloaded from Appium website), ‘Inspector’ tool provides ability to locate/identify/operate on all locators of Application configured.

PROS 

  1. Supports multiple languages.
  2. Does not require Source code access.
  3. Cross platform script development.
  4. Large community support.
  5. Supports script recording on Mac
  6. Can extract identifiers using Appium Server application’s ‘Inspector’ tool.
  7. In built support for ‘Selendroid’ by Appium Server desktop application.
  8. It also uses the vendor provided framework: UIAutomation for iOS, UIAutomator and Selendroid for android 4.2+ and 2.3+ respectively.
  9. Supports physical device as well as Emulators.
  10. Supports native, hybrid and mobile web application automation.

CONS

  1. Frequent unstable releases for Appium Server desktop application.
  2. Script recording not available for Application server desktop application for Windows OS.

3) ROBOTIUM (ANDROID)

RobotiumWhat it is – Robotium is open source test framework for developing functional, system and acceptance test scenarios. It is very similar to selenium however only for android. It’s listed under Apache Licence 2.0.
Because of simplicity and ability to create powerful and robust automation scenarios it’s gaining popularity in test automation community.
It uses run time binding to GUI components hence. It installs test case suite as an application on android device or emulator and hence provide real environment for execution of tests.

PROS 

  1. Easy to write test scripts in minimal time.
  2. Automation of pre-installed apps is possible.
  3. Automatically follows current activity.
  4. Faster and robust test execution as compared to Appium due to run time binding with GUI components.
  5. Can work without access to code or knowing implementation of app.
  6. Support for Activities, Dialogs, Toasts, Menus, Context Menus and other Android SDK controls.

CONS

  1. Can’t handle flash or web components.
  2. Supports development in Java.
  3. Can be slow on older devices.
  4. Does not support automation of iOS devices which can be deal breaker where test strategy involves automation of both android and iOS device automation.
  5. No inbuilt support for record and playback. Paid tools available for recording such as TestDroid and Robotium Recorder.

4) FRANK (IOS)

Frank

What it is – Frank is iOS app automation framework and provides ability to write tests scenarios in structured English sentences using cucumber.
Frank requires it to be compiled inside application under test and hence changes are mandatory to your source code. It’s a tool written mainly by some fellow Thought workers that uses a combination of Cucumber and JSON commands that are sent to a server running inside your native application, and leverages UISpec to run the commands.

PROS 

  1. Test scenarios are written in understandable English sentences with help of cucumber framework.
  2. Symbiote – Live inspection tool is included.
  3. Proves efficient when team is having experience on web automation framework with selenium, cucumber.
  4. Active community support.
  5. Continuously expanding library.

CONS

  1. Limited support for gestures.
  2. Bit difficult to run tests on device.
  3. Modification to configuration file is required to run on real devices.
  4. Recording feature not available.

5) UIAUTOMATOR (ANDROID)

UIAutomator
What it is – UIAutomator is test framework by Google that provides advance UI testing of native android apps and games. It’s java library containing API to create functional UI tests and also an execution engine to run the tests. This library comes in build with android SDK. Many tutorials are available for beginners to get started. Advantage is it gives special privileges to Junit test cases while running to access different processes. Even though it’s good and simpler for native apps automation, it has very limited or almost no support web view automation. It only supports devices with API level 16 and above, however that should not be big factor or deal breaker as most of apps these days support API level 19 and above.

PROS

  1. Simple and easy to learn tutorials are available.
  2. Library supported and maintained by google community.
  3. Third party paid integration with cloud based test management available.

CONS 

  1. Supports only android 4.1 and above.
  2. Script recording is not supported.
  3. Support is focused in for Java.
  4. You can’t get current activity or Instrumentation.
  5. ‘WebView’ is not currently supported and hence hybrid apps.
  6. Library support is in Java only so it’s very hard if someone wants to blend it with cucumber which is in ruby.     However Java has its own BDD frameworks which can be used, not much in practice though.
Here I have tried to have some of the Pro's and Con's of the above tools. Hope it will help you to choose right toll for right platform according to your application requirements and technical implementation.

Thank you :)