Home
last modified time | relevance | path

Searched refs:moreButton (Results 1 – 3 of 3) sorted by relevance

/packages/modules/AdServices/adservices/apk/tests/util/java/com/android/adservices/ui/util/
DNotificationActivityTestUtil.java91 UiObject2 moreButton = in clickMoreToBottom() local
94 if (moreButton == null) { in clickMoreToBottom()
100 while (moreButton != null && clickCount-- > 0) { in clickMoreToBottom()
101 moreButton.clickAndWait(Until.scrollFinished(Direction.DOWN), SCROLL_WAIT_TIME); in clickMoreToBottom()
104 moreButton = ApkTestUtil.getElement(device, R.string.notificationUI_more_button_text); in clickMoreToBottom()
106 assertWithMessage("More button").that(moreButton).isNull(); in clickMoreToBottom()
/packages/modules/AdServices/adservices/tests/cts/ui/libs/src/com/android/adservices/tests/ui/libs/pages/
DNotificationPages.java273 UiObject2 moreButton = in goThroughNotificationPage() local
277 while (moreButton != null && clickCount-- > 0) { in goThroughNotificationPage()
278 moreButton.click(); in goThroughNotificationPage()
280 moreButton = getElement(context, device, R.string.notificationUI_more_button_text); in goThroughNotificationPage()
286 assertThat(moreButton).isNull(); in goThroughNotificationPage()
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
DTrampolineActivityTest.kt222 val moreButton = device.wait(Until.findObject(By.descContains("More")), UI_TIMEOUT) in testReferredGetContentFromPhotopickerShouldNotRedirectBack() constant
223 moreButton?.click() in testReferredGetContentFromPhotopickerShouldNotRedirectBack()