やCoordinatorLayout
などの Espresso アクションの動作が壊れているようです。scrollTo()
RecyclerViewActions.scrollToPosition()
NestedScrollView に関する問題
このようなレイアウトの場合:
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
...
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
...
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
最初の問題をNestedScrollView
使用して内部の任意のビューにスクロールしようとすると、 . これは、このアクションがサポートするだけで拡張しないためです。この問題の回避策については、こちらで説明しています。基本的には、コードをコピーして、制約をサポートするように変更できます。が a にない場合は機能するようですが、 a の中に入れるとすぐにスクロールアクションが失敗します。ViewActions.scrollTo()
PerformException
ScrollView
NestedScrollView
scrollTo()
NestedScrollView
NestedScrollView
CoordinatorLayout
CoordinatorLayout
RecyclerView の問題
NestedScrollView
同じレイアウトの場合、を aに置き換えるRecyclerView
と、スクロールにも問題があります。
この場合、私は使用してRecyclerViewAction.scrollToPosition(position)
います。とは異なりNestedScrollView
、ここではスクロールが行われていることがわかります。ただし、間違った位置にスクロールしているようです。たとえば、最後の位置までスクロールすると、最後から 2 番目は表示されますが、最後の位置は表示されません。スクロールのRecyclerView
外に移動すると、正常に動作します。CoordinatorLayout
現時点では、CoordinatorLayout
この問題により、使用する画面用の Espresso テストを作成できません。同じ問題が発生したか、回避策を知っている人はいますか?