Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a tool to automate testing of my android application. Specially I want to cover the test cases below:

  • send 10 sms
  • make a photo
  • make 10 calls

It's even more like a script, which will allow me to record actions.

Any hint?

share|improve this question

3 Answers

up vote 1 down vote accepted

You should take a look at Monkeyrunner

I'm pretty sure it's exactly what you are looking for.

share|improve this answer

There are three options you can look at: Robotium, Scirocco and RoboElectric.

I've found them to be useful for basic operations as long as you are explicit in what should happen and what to click on, etc. I cannot say whether they can send SMSes using the built-in SMS app, it is likely that you will need to build this automation in somehow, or even send SMSes via the emulator.

share|improve this answer
I guess all this tools are for Unit-testing android apps. What I need is a tool to record specific actions performed outside my app. – Mighter Sep 2 '12 at 16:21

What about Android testing framework? http://developer.android.com/tools/testing/index.html

share|improve this answer
Nope, it's a Unit-testing. – Mighter Sep 2 '12 at 17:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.