Me Malik
Me Malik

Reputation: 409

Android UIAUTOMATOR Testing?

Hi guys I am testing my app UI. I applied monkey runner test. But I want to test it with another framework as well. Can anybody tell me that we can use uiautomatorviewer and uiautomator testing method to test API below then 16 like Android 3.0 and below versions? or please recommend me some other testing method by which I can test my UI on all versions of the android.

Upvotes: 0

Views: 652

Answers (2)

Rajesh
Rajesh

Reputation: 4759

The most recommended tool for testing android application are

1.Robotium

2.Espresso

3.Mockito

4.Robolectric

Happy Testing

Upvotes: 0

Dnavir
Dnavir

Reputation: 564

Uiautomator framework works only with API level 16 and above, therefore you cannot use UIautomator framework to test devices with API level <16.

Following are few other frameworks which work across all the versions/api levels

1.MonkeyRunner

2.Robotium

Upvotes: 3

Related Questions