How is it possible to scroll down to the bottom of ScrollView in Espresso test? Thanks!
Also u can try:
public Matcher getConstraints() {
return allOf(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE), isDescendantOfA(anyOf(
isAssignableFrom(ScrollView.class), isAssignableFrom(HorizontalScrollView.class), isAssignableFrom(NestedScrollView.class))));
If you have a view inside android.support.v4.widget.NestedScrollView instead of scrollView scrollTo() does not work.