I have a heterogeneous recycler view and I am trying to scroll it to item at position 30. My test is passing but I cannot see the screen actually scrolling.
onView(withId(R.id.content_view))
.perform(RecyclerViewActions.scrollToPosition(30));
This is what I am doing to scroll.