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

I want to write Robotium scripts for Testing a APK file in Emulator, but the Point here is Dn't Know how to write Robotium Scripts?

Is there any resources for Learning Robotium scripts?

share|improve this question
here is a tutorial for Robotium, but its in German: Android Robotium Tutorial Maybe the code hepls you. – kameltreiber Feb 6 '12 at 19:38

3 Answers

Please go to the Robotium tutorials page:

http://code.google.com/p/robotium/wiki/RobotiumTutorials

share|improve this answer

Robotium uses the Java programming language to write scripts. If you would like to learn Java, check out this link: http://docs.oracle.com/javase/tutorial/java/index.html

Or this: http://www.javabeginner.com/

Or this: http://netbeans.org/kb/articles/learn-java.html

Or just Google: "learn java"

share|improve this answer

You can try the TestDroid plugin for Eclipse. This has a test recorder and you can perform all test actions on the emulator/device manually and all the steps are recorded.

After that, based on the recorded steps a robotium script is generated in Eclipse and you can modify/tune it. It is very helpful especially for people who don't really know advanced Robotium scripts !

Here is the link :

http://testdroid.com/product/testdroid-recorder

Install the recorder and play around with the test scripts generated.

share|improve this answer

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.