Skip to content

Instantly share code, notes, and snippets.

View Cronch's full-sized avatar

Gastón Cronch

View GitHub Profile
@Cronch
Cronch / gist:8d4bf0e1f3024a0c0fdb
Created January 29, 2016 03:06
Some practical examples of Espresso
@Test
public void ensureTextChangesWork() {
// Type text and then press the button.
onView(withId(R.id.inputField))
.perform(typeText("HELLO"), closeSoftKeyboard());
onView(withId(R.id.changeText)).perform(click());
// Check that the text was changed.
onView(withId(R.id.inputField)).check(matches(withText("Lalala")));
}