如何单击 ListView 特定行位置中的视图
Posted
技术标签:
【中文标题】如何单击 ListView 特定行位置中的视图【英文标题】:How can I click on a View in ListView specific row position 【发布时间】:2015-09-28 12:53:08 【问题描述】:我有一个 ListView:
我想点击 ListView 中的特定按钮。
如果我想使用 onData 选择器进行选择:
onData(withId(R.id.button))
.inAdapterView(withId(R.id.list_view))
.atPosition(1)
.perform(click());
我得到这个错误:
android.support.test.espresso.PerformException: Error performing 'load adapter data' on view 'with id: com.example.application:id/list_view'.
...
我该如何解决这个问题?
【问题讨论】:
【参考方案1】:onData()
需要一个对象匹配器来匹配您感兴趣的项目。如果您不关心适配器中的数据,您可以使用Matchers.anything()
来有效匹配适配器中的所有对象。或者,您可以为您的项目创建一个数据匹配器(取决于存储在适配器中的数据)并将其传递给更具确定性的测试。
至于按钮 - 您正在寻找的是一个 onChildsView()
方法,它允许为列表项的后代传递一个视图匹配器,在 onData().atPosition()
中匹配
因此,您的测试将如下所示:
onData(anything()).inAdapterView(withId(R.id.list_view))
.atPosition(1)
.onChildView(withId(R.id.button))
.perform(click());
【讨论】:
谢谢!我之前没有在 onChildsView 上看到这个。顺便说一句,nthChildDescendant 函数可能对其他东西有用:)【参考方案2】:我使用了一种不使用 ListView 数据和.getPosition(index)
的解决方法,而是检查具有特定 id 的视图是否是 ListView 特定位置视图的后代。
public static Matcher<View> nthChildsDescendant(final Matcher<View> parentMatcher, final int childPosition)
return new TypeSafeMatcher<View>()
@Override
public void describeTo(Description description)
description.appendText("with " + childPosition + " child view of type parentMatcher");
@Override
public boolean matchesSafely(View view)
while(view.getParent() != null)
if(parentMatcher.matches(view.getParent()))
return view.equals(((ViewGroup) view.getParent()).getChildAt(childPosition));
view = (View) view.getParent();
return false;
;
使用示例:
onView(allOf(
withId(R.id.button),
nthChildsDescendant(withId(R.id.list_view), 1)))
.perform(click());
【讨论】:
以上是关于如何单击 ListView 特定行位置中的视图的主要内容,如果未能解决你的问题,请参考以下文章
如何从QML中的GridView或ListView获取实例化的委托组件