我正试图从ViewMatcher
获取ViewInteraction
。但似乎ViewInteraction
类将ViewMatcher
视为私有。
此外,我不能通过扩展ViewInteraction
来编写我自己的实现,因为它是最后一个类。
上述问题的原因是,
我正在尝试使用ViewInteraction.scrollTo
如果视图为ScrollView
,则函数可以正常工作,但是,如果视图为RecyclerView
,我需要使用RecyclerViewActions.scrollTo
函数,该函数需要ViewMatcher
作为参数。
这就是我需要从ViewMatcher
中提取ViewInteraction
的原因。