rahulserver
rahulserver

Reputation: 11205

"Appdriver" like Webdriver for android apps

I was looking for an automation framework similar to selenium webdriver for android that would have these features:

  1. Allow finding elements on the UI, just as the webdriver allows by xpath,id etc..
  2. Emulating user actions like keystrokes,page scroll,clicks and other touch events.
  3. All these without having the source code of the app. We have a lot of testing frameworks which allow us to do these, but it should allow us to work with any, or atleast most android apps without having their source code.
  4. These scenarios should be written in preferably java or atleast should support integration with java libs so that we can do tasks such as read excel sheet using POI and copy texts in those and paste the content to say the EditText in successive iterations.

I could not find a framework that would suit my needs so kindly suggest the same.

Upvotes: 1

Views: 173

Answers (1)

Eric B.
Eric B.

Reputation: 149

We do test automation without having the source code of our customer apps and there definitely are framework that allows you to do that. You can typically check Robotium that should do what you expect.

Upvotes: 3

Related Questions