3

I am searching for a tool/software for black box testing of android apps. I researched for some of them-Robotium, Calabash. But these tools require access to the source codes. Also the tool should be free and opensource for use.

Punit
  • 149
  • 3
  • 9
  • Isn't Robotium OS and from what i know doesn't require access to the source code? – Abhishek Asthana Sep 12 '13 at 18:01
  • A new android UI testing tool is repeato. It does not require access to the source code and works based on computer vision: https://www.repeato.app – stoefln May 04 '20 at 15:32

2 Answers2

4

The Android SDK itself offers:

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
0

You can also use Calabash-Android. It does not need access to source code and you can use it with a signed .apk file. You would only need to know the id of the UI elements if you want to manipulate them.

appcoder
  • 639
  • 1
  • 9
  • 19