Home
last modified time | relevance | path

Searched refs:waitForNullable (Results 1 – 2 of 2) sorted by relevance

/platform_testing/libraries/uiautomator-helpers/src/android/platform/uiautomator_helpers/
DWaitUtils.kt267 fun <T> waitForNullable( in waitForNullable() method
283 fun <T> waitForNullable( in waitForNullable() method
287 ): T? = waitForNullable(description, timeout, checker = { it != null }, supplier) in waitForNullable()
300 waitForNullable(description, timeout, { !it.isNullOrEmpty() }, supplier) ?: emptyList() in waitForPossibleEmpty()
315 ): T = waitForNullable(description, timeout, supplier) ?: error(errorProvider())
DDeviceHelpers.kt28 import android.platform.uiautomator_helpers.WaitUtils.waitForNullable
115 waitForNullable("nullable $selector objects", timeout) { uiDevice.findObject(selector) } in waitForNullableObj()
123 ): UiObject2? = waitForNullable("nullable $selector objects", timeout) { findObject(selector) } in waitForNullableObj()