本文整理汇总了Java中com.android.uiautomator.core.UiSelector.childSelector方法的典型用法代码示例。如果您正苦于以下问题:Java UiSelector.childSelector方法的具体用法?Java UiSelector.childSelector怎么用?Java UiSelector.childSelector使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.android.uiautomator.core.UiSelector
的用法示例。
在下文中一共展示了UiSelector.childSelector方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: find
import com.android.uiautomator.core.UiSelector; //导入方法依赖的package包/类
private UiSelector find(String selectString) throws UiObjectNotFoundException {
UiSelector currentSel = new UiSelector().index(0);
String[] elements = selectString.split("\\.");
for (String element : elements) {
String[] classIndex = element.split("-");
String klassName = "android.widget." + classIndex[0];
int elIndex = Integer.parseInt(classIndex[1]);
currentSel = currentSel.childSelector(
new UiSelector().className(klassName).index(elIndex)
);
}
return currentSel;
}
示例2: findIndexPath
import com.android.uiautomator.core.UiSelector; //导入方法依赖的package包/类
private UiSelector findIndexPath(int[] indexes) throws UiObjectNotFoundException {
UiSelector currentSel = new UiSelector().index(0);
for (int i: indexes) {
currentSel = currentSel.childSelector(
new UiSelector().index(i)
);
}
return currentSel;
}