Espresso: how to scroll to the bottom of ScrollView

后端 未结 4 1091
渐次进展
渐次进展 2021-02-05 05:50

How is it possible to scroll down to the bottom of ScrollView in Espresso test? Thanks!

4条回答
  •  粉色の甜心
    2021-02-05 06:15

    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.

提交回复
热议问题