Reputation: 159
I am stuck in starting a new test project(using Robotium and Eclipse) for testing an application and I have only the .apk file. I've followed all the tutorials from http://code.google.com/p/robotium/ but it seems I'm missing something.
What are the correct steps in order to link the application installed on the device to my Eclipse project?
Upvotes: 1
Views: 1984
Reputation: 11
I try the following procedures for a debug version apk. It works.
Create a android test project and "select test target" to any one (since you do not have the source code of the real target project)
Modify AndroidManifest.xml and change "android:targetPackage" to your real target package.
Write and run your blackbox test cases.
Upvotes: 1