This guide covers installing Espresso using the SDK Manager and building it using Gradle. Android Studio is recommended.
Set up your test environment
To avoid flakiness, we highly recommend that you turn off system animations on the virtual or physical devices used for testing. On your device, under Settings > Developer options, disable the following 3 settings:
- Window animation scale
- Transition animation scale
- Animator duration scale
Add Espresso dependencies
To add Espresso dependencies to your project, complete the following steps:
- Open your app’s
build.gradlefile. This is usually not the top-levelbuild.gradlefile butapp/build.gradle. - Add the following lines inside dependencies:
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestCompile 'com.android.support.test:runner:0.5'
View the complete set of Gradle dependencies.
Set the instrumentation runner
Add to the same build.gradle file the following line in
android.defaultConfig:
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Example Gradle build file
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.my.awesome.app"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
}
dependencies {
// App's dependencies, including test
compile 'com.android.support:support-annotations:22.2.0'
// Testing-only dependencies
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
}
Analytics
In order to make sure we are on the right track with each new release, the test runner collects analytics. More specifically, it uploads a hash of the package name of the application under test for each invocation. This allows us to measure both the count of unique packages using Espresso as well as the volume of usage.
If you do not wish to upload this data, you can opt out by including the
disableAnalytics argument in your instrumentation command:
adb shell am instrument -e disableAnalytics true
See how to pass custom arguments.
Add the first test
Android Studio creates tests by default in
src/androidTest/java/com.example.package/.
Example JUnit4 test using Rules:
@RunWith(AndroidJUnit4.class)
@LargeTest
public class HelloWorldEspressoTest {
@Rule
public ActivityTestRule<MainActivity> mActivityRule =
new ActivityTestRule(MainActivity.class);
@Test
public void listGoesOverTheFold() {
onView(withText("Hello world!")).check(matches(isDisplayed()));
}
}
Running tests
You can run your tests in Android Studio or from the command line.
In Android Studio
To create a test configuration in Android Studio, complete the following steps:
- Open Run > Edit Configurations.
- Add a new Android Tests configuration.
- Choose a module.
- Add a specific instrumentation runner:
android.support.test.runner.AndroidJUnitRunner - Run the newly created configuration.
From the command line
Execute the following Gradle command:
./gradlew connectedAndroidTest