Home
last modified time | relevance | path

Searched refs:childSelector (Results 1 – 6 of 6) sorted by relevance

/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
DSidebarBot.java61 mTargetPackage + ":id/container_roots").childSelector( in findRoot()
65 new UiObject(rootsList.childSelector(new UiSelector())).waitForExists(mTimeout); in findRoot()
69 return new UiObject(rootsList.childSelector(new UiSelector().text(label))); in findRoot()
80 mTargetPackage + ":id/container_roots").childSelector( in openDrawer()
87 mTargetPackage + ":id/toolbar").childSelector( in openDrawer()
DGestureBot.java107 mDirContainerId).childSelector( in findDocument()
111 new UiObject(docList.childSelector(new UiSelector())).waitForExists(mTimeout); in findDocument()
113 return mDevice.findObject(docList.childSelector(new UiSelector().text(label))); in findDocument()
DDirectoryListBot.java279 new UiObject(docList.childSelector(new UiSelector())).waitForExists(mTimeout); in findDocument()
284 return mDevice.findObject(docList.childSelector(new UiSelector().text(label))); in findDocument()
315 UiObject doc = new UiObject(docList.childSelector(new UiSelector())); in assertFirstDocumentHasFocus()
329 mDirContainerId).childSelector( in findDocumentsListSelector()
DBots.java107 .childSelector(new UiSelector().resourceId(childResourceId)); in findObject()
DSearchBot.java85 mDevice.findObject(history.getSelector().childSelector(historyItemSelector)).click(); in clickSearchHistory()
/packages/apps/Settings/tests/uitests/src/com/android/settings/ui/
DZonePickerSettingsTest.java172 private UiObject selectItemInList(UiSelector childSelector) throws UiObjectNotFoundException { in selectItemInList() argument
175 return selectScrollableItem(recyclerView, childSelector); in selectItemInList()
182 private UiObject selectScrollableItem(UiScrollable scrollable, UiSelector childSelector) in selectScrollableItem() argument
187 scrollable.scrollIntoView(childSelector); in selectScrollableItem()
189 UiObject child = mDevice.findObject(childSelector); in selectScrollableItem()
190 assertUiObjectFound(child, childSelector); in selectScrollableItem()