Home
last modified time | relevance | path

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

/platform_testing/libraries/automotive-helpers/facet-bar-helper/src/android/platform/helpers/
DFacetBarHelperImpl.java71 BySelector appSelector = in isAppInForeground() local
73 return getSpectatioUiUtil().hasUiElement(appSelector); in isAppInForeground()
/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper2/
DAutoLauncherStrategy.java356 BySelector appSelector = By.clickable(true).hasDescendant(By.text(appName)); in findApplication() local
367 UiObject2 app = mDevice.wait(Until.findObject(appSelector), UI_WAIT_TIMEOUT); in findApplication()
371 app = mDevice.wait(Until.findObject(appSelector), UI_WAIT_TIMEOUT); in findApplication()
376 return mDevice.findObject(appSelector); in findApplication()
DTvLauncherStrategy.java569 protected UiObject2 selectAppInAllApps(BySelector appSelector, String packageName) {
580 expected = mDevice.wait(Until.findObject(appSelector), UI_WAIT_TIME_MS);
585 } else if (focused.hasObject(appSelector)) {
625 protected UiObject2 selectAppInAllAppsZigZag(BySelector appSelector, String packageName) {
628 UiObject2 app = select(appSelector, direction, UI_TRANSITION_WAIT_TIME_MS);
631 app = select(appSelector, direction, UI_TRANSITION_WAIT_TIME_MS);
/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
DAutoLauncherStrategy.java375 BySelector appSelector = By.clickable(true).hasDescendant(By.text(appName)); in findApplication() local
386 UiObject2 app = mDevice.wait(Until.findObject(appSelector), UI_WAIT_TIMEOUT); in findApplication()
390 app = mDevice.wait(Until.findObject(appSelector), UI_WAIT_TIMEOUT); in findApplication()
395 return mDevice.findObject(appSelector); in findApplication()
DTvLauncherStrategy.java600 protected UiObject2 selectAppInAllApps(BySelector appSelector, String packageName) {
611 expected = mDevice.wait(Until.findObject(appSelector), UI_WAIT_TIME_MS);
616 } else if (focused.hasObject(appSelector)) {
657 protected UiObject2 selectAppInAllAppsZigZag(BySelector appSelector, String packageName) {
660 UiObject2 app = select(appSelector, direction, UI_TRANSITION_WAIT_TIME_MS);
663 app = select(appSelector, direction, UI_TRANSITION_WAIT_TIME_MS);
/platform_testing/libraries/flicker/appHelpers/src/android/tools/device/apphelpers/
DStandardAppHelper.kt144 val appSelector = getAppSelector(expectedPackageName) in launchViaIntent() constant
145 uiDevice.wait(Until.hasObject(appSelector), APP_LAUNCH_WAIT_TIME_MS) in launchViaIntent()