我正在尝试使用通用方法实现 UIAutomator 测试用例,以执行对 ListView 项的单击(无论持有该列表项的视图组类型如何)。
目前我有以下代码,但它继续点击第一项。
public void clickListViewItem(int index) throws UiObjectNotFoundException {
UiObject listview = new UiObject(new UiSelector().className("android.widget.ListView"));
if(index <= listview.getChildCount()){
listview.getChild(new UiSelector().index(index)).click();
}else{
throw new UIObjectNotFoundException("Index is greater than listSize");
}
}