Skip to content

Instantly share code, notes, and snippets.

@tatocaster
Last active August 9, 2020 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tatocaster/be289bb26c134cfcbd4b784b46cab132 to your computer and use it in GitHub Desktop.
Save tatocaster/be289bb26c134cfcbd4b784b46cab132 to your computer and use it in GitHub Desktop.
Espresso Test
@Test
fun labelsAreDisplyed_SameFragment() {
// some other assertions
onView(withId(R.id.tvAccountNumberLabel))
.perform(nestedScrollTo())
.check(matches(isDisplayed()))
// here as well
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment