This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now.
2 / 2
Aug 2018

An open source tool that is required for mobile web, automating Native and hybrid application on Android and IOS platform is known as Appium which was in 2012. Appium is considered to be a cross platform that will low you to write tests which are on multiple platforms like Android and IOS. They do this using the same API. This facility will enable you to do reuse of codes between Android and IOS test sites.

Those Apps are written by using Android SDKs and IOS are known as Native Apps.

The advantages of Appium are listed below:-

  1. Using the same API, Appium will allow you to write tests that are against mobile platforms.
  2. By using any kind of test frame work or language you can write and run the tests.
  3. Appium is an open source platform so you can contribute to it easily.
  4. For the hybrid mobile applications and Native, Appium provides cross platform.
  5. Appium supports JSON wire protocol.
  6. Appium do not require recompilation of App.
  7. Appium also supports automation test on the physical devices and also for simulator or emulator both.
  8. Appium does not have any dependency on mobile devices.

The disadvantages of Appium are listed below:-

  1. The testing of those android that are lower than 4.2 is not allowed.
  2. Appium has limited support for hybrid app testing. You will not be able to test the action that allows switching of applications from native to web app and from web app to native.
  3. There is no support that will allow you to run Appium inspector on Microsoft windows.
  • created

    Aug '18
  • last reply

    Aug '18
  • 1

    reply

  • 969

    views

  • 2

    users

  • 1

    link

The testing of those android that are lower than 4.2 is not allowed.

Selendroid driver supports SDKs starting from API 10, which is Android 2.3.3

Appium has limited support for hybrid app testing. You will not be able to test the action that allows switching of applications from native to web app and from web app to native.

Depending on what one calls “hybrid”. If we are talking about web views support then Appium can switch between native and webview contexts even if there are multiple.

There is no support that will allow you to run Appium inspector on Microsoft windows.

Appium Desktop is based on Atom-Electron and can be executed everywhere where this wrapper is supported, including Windows: https://github.com/appium/appium-desktop/releases2