本文介绍了浓缩咖啡:如何滚动到ScrollView的底部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Espresso测试中如何向下滚动到ScrollView的底部?谢谢!

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

推荐答案

如果需要在ScrollView的底部找到一个视图并对其进行匹配,则只需对它执行scrollTo()操作,然后再执行其他操作即可需要显示它的操作.

If at the bottom of the ScrollView you need to find a view and match something against it, then simply perform the scrollTo() action on it, before any other actions that require it to be displayed.

onView(withId(R.id.onBottomOfScrollView))
    .perform(scrollTo(), click());

这篇关于浓缩咖啡:如何滚动到ScrollView的底部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 17:14