1
0
Fork 0

No issue: Scroll to remote debugging text in UI Tests (#7117)

master
Emily Kager 2019-12-12 12:00:02 -08:00 committed by Tiger Oakes
parent 32985af882
commit 558f90da00
1 changed files with 5 additions and 2 deletions

View File

@ -199,8 +199,11 @@ private fun assertDeveloperToolsHeading() {
.check(matches(withEffectiveVisibility(Visibility.VISIBLE)))
}
private fun assertRemoteDebug() = onView(ViewMatchers.withText("Remote debugging via USB"))
.check(matches(withEffectiveVisibility(Visibility.VISIBLE)))
private fun assertRemoteDebug() {
TestHelper.scrollToElementByText("Remote debugging via USB")
onView(ViewMatchers.withText("Remote debugging via USB"))
.check(matches(withEffectiveVisibility(Visibility.VISIBLE)))
}
// ABOUT SECTION
private fun assertAboutHeading() {