Last active
August 9, 2020 20:02
-
-
Save tatocaster/be289bb26c134cfcbd4b784b46cab132 to your computer and use it in GitHub Desktop.
Espresso Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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