Working with Instrumentation for Android and AWS Device Farm
Device Farm provides support for Instrumentation (JUnit, Espresso, Robotium, or any Instrumentation-based tests) for Android.
Device Farm also provides a sample Android application and links to working tests
in three Android
automation frameworks, including Instrumentation (Espresso). The Device Farm sample app
for Android
Topics
What Is Instrumentation?
Android instrumentation makes it possible for you to invoke callback methods in your
test code so you can run through the lifecycle of a component step by step, as if
you
were debugging the component. For more information, see Instrumentation
Upload Your Android Instrumentation Tests
Use the Device Farm console to upload your tests.
-
Sign in to the Device Farm console at https://console.aws.amazon.com/devicefarm
. -
In the list of projects, choose the option next to the project where you want to upload your tests.
Tip If the list of projects is not displayed, then on the secondary navigation bar, for Projects, choose the name of the project where you want to upload your tests.
To create a project, follow the instructions in Create a Project in AWS Device Farm.
-
If the Create a new run button is displayed, choose it.
-
On the Choose your application page, choose Upload.
-
Browse to and choose your Android app file. The file must be an .apk file.
-
Choose Next step.
-
On the Configure a test page, choose Instrumentation, and then choose Upload.
-
Browse to and choose the .apk file that contains your tests.
-
Choose Next step, and then complete the remaining instructions to select devices and start the run.
Taking Screenshots in Android Instrumentation Tests
You can take screenshots as part of your Android Instrumentation tests.
To take screenshots, call one of the following methods:
-
For Robotium, call the
takeScreenShot
method (for example,solo.takeScreenShot();
). -
For Spoon, call the
screenshot
method, for example:Spoon.screenshot(activity, "initial_state"); /* Normal test code... */ Spoon.screenshot(activity, "after_login");
During a test run, Device Farm gets screenshots from the following locations on the devices, if they exist, and then adds them to the test reports:
-
/sdcard/robotium-screenshots
-
/sdcard/test-screenshots
-
/sdcard/Download/spoon-screenshots/
test-class-name
/test-method-name
-
/data/data/
application-package-name
/app_spoon-screenshots/test-class-name
/test-method-name
Additional Considerations for Android Instrumentation Tests
- System Animations
-
Per the Android documentation for Espresso testing
, it is recommended that system animations are turned off when testing on real devices. Device Farm automatically disables Window Animation Scale, Transition Animation Scale, and Animator Duration Scale settings when it executes with the android.support.test.runner.AndroidJUnitRunner instrumentation test runner. - Test Recorders
-
Device Farm supports frameworks, such as Robotium, that have record-and-playback scripting tools.