You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line introduces the issue: it doesn't scroll until the View is visible, cos just matches visible things. Espresso.onView(DisplayedMatchers.displayedWithId(id)).perform(new ViewAction[]{ViewActions.scrollTo(), ViewActions.click()});
The text was updated successfully, but these errors were encountered:
* Use strings.xml to reuse button labels, which will be great to reuse them on instrumentation tests
* Reproduce the issue #62 and improve test method names
* Fix the issue described by the new tests
* Reproduce the issue of clicking a Button repeated in multiple ViewPager pages
* Fix the issue described at last test
* Use String.valueOf() instead of ""+int to avoid a warning
* Name the exceptions to explain what they catch
* Extract methods that call Espresso to avoid having two level of abstaction levels at click() methods
* Avoid unused imports
* Avoid lines larger than 140 chars
This line introduces the issue: it doesn't scroll until the
View
is visible, cos just matches visible things.Espresso.onView(DisplayedMatchers.displayedWithId(id)).perform(new ViewAction[]{ViewActions.scrollTo(), ViewActions.click()});
The text was updated successfully, but these errors were encountered: