Searched refs:waitForNullable (Results 1 – 2 of 2) sorted by relevance
/platform_testing/libraries/uiautomator-helpers/src/android/platform/uiautomator_helpers/ |
D | WaitUtils.kt | 267 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())
|
D | DeviceHelpers.kt | 28 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()
|