gpt4 book ai didi

java - 是否可以使用 Espresso 的 IdlingResource 等待某个 View 出现?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:11:10 25 4
gpt4 key购买 nike

在我的测试中,我有一个阶段,在按下按钮后,应用程序会执行大量异步计算并向云服务发出请求,之后它会显示特定 View 。

是否可以使用 Espresso 的 IdlingResource 实现来等待某个 View 出现?

我已阅读答案 here并且评论似乎建议您可以改用 IdlingResource,但我不明白该怎么做。 Espresso 似乎没有任何内置的方法来处理长时间的操作,但不得不编写自己的等待循环感觉就像一个 hack。

有什么方法可以解决这个问题,还是我应该按照链接线程中的答案建议的那样做?

最佳答案

Atte Backenhof 的解决方案有一个小错误(或者我没有完全理解其中的逻辑)。

getView 应该返回 null 而不是抛出异常以使 IdlingResources 工作。

这是一个带有修复的 Kotlin 解决方案:

/**
* @param viewMatcher The matcher to find the view.
* @param idleMatcher The matcher condition to be fulfilled to be considered idle.
*/
class ViewIdlingResource(
private val viewMatcher: Matcher<View?>?,
private val idleMatcher: Matcher<View?>?
) : IdlingResource {

private var resourceCallback: IdlingResource.ResourceCallback? = null

/**
* {@inheritDoc}
*/
override fun isIdleNow(): Boolean {
val view: View? = getView(viewMatcher)
val isIdle: Boolean = idleMatcher?.matches(view) ?: false
if (isIdle) {
resourceCallback?.onTransitionToIdle()
}
return isIdle
}

/**
* {@inheritDoc}
*/
override fun registerIdleTransitionCallback(resourceCallback: IdlingResource.ResourceCallback?) {
this.resourceCallback = resourceCallback
}

/**
* {@inheritDoc}
*/
override fun getName(): String? {
return "$this ${viewMatcher.toString()}"
}

/**
* Tries to find the view associated with the given [<].
*/
private fun getView(viewMatcher: Matcher<View?>?): View? {
return try {
val viewInteraction = onView(viewMatcher)
val finderField: Field? = viewInteraction.javaClass.getDeclaredField("viewFinder")
finderField?.isAccessible = true
val finder = finderField?.get(viewInteraction) as ViewFinder
finder.view
} catch (e: Exception) {
null
}
}

}

/**
* Waits for a matching View or throws an error if it's taking too long.
*/
fun waitUntilViewIsDisplayed(matcher: Matcher<View?>) {
val idlingResource: IdlingResource = ViewIdlingResource(matcher, isDisplayed())
try {
IdlingRegistry.getInstance().register(idlingResource)
// First call to onView is to trigger the idler.
onView(withId(0)).check(doesNotExist())
} finally {
IdlingRegistry.getInstance().unregister(idlingResource)
}
}

在您的 UI 测试中的使用:

    @Test
fun testUiNavigation() {
...
some initial logic, navigates to a new view
...
waitUntilViewIsDisplayed(withId(R.id.view_to_wait_for))
...
logic on the view that we waited for
...
}

重要更新:IdlingResources 的默认超时为 30 秒,它们不会永远等待。要增加超时,您需要在 @Before 方法中调用它,例如:IdlingPolicies.setIdlingResourceTimeout(3, TimeUnit.MINUTES)

关于java - 是否可以使用 Espresso 的 IdlingResource 等待某个 View 出现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50628219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com