Snackbar和Espresso有时会失败

时间:2016-02-03 21:34:22

标签: android android-espresso

正如标题所说,它失败了一些,有些则失败了。

android.support.test.espresso.base.DefaultFailureHandler$AssertionFailedWithCauseError: 'is displayed on the screen to the user' doesn't match the selected view.

Expected: is displayed on the screen to the user
Got: "AppCompatTextView{id=2131492981, res-name=snackbar_text, visibility=VISIBLE, width=444, height=71, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, root-is-layout-requested=false, has-input-connection=false, x=18.0, y=0.0, text=Network Error, input-type=0, ime-target=false, has-links=false}"

堆栈跟踪的第一行表明espresso无法在屏幕上看到Snackbar。但第二行说明它实际上是看到一个visibility=VISIBLEtext=Network Error的Snackbar是正确的。

我很困惑,发生了什么?

这是我的测试代码:

activityRule.launchActivity(new Intent());
onView(withText("Network Error")).check(matches(isDisplayed()));
PS:当我运行整套测试服时,它几乎失败了;但有时当我单独运行此测试时它也会失败。有时它会传递绿色,但没有任何模式,似乎是随机的。

2 个答案:

答案 0 :(得分:5)

晚!但我希望它对其他人有所帮助:

Testing Snackbar show with Espresso

private void checkSnackBarDisplayedByMessage(@StringRes int message) {
    onView(withText(message))
        .check(matches(withEffectiveVisibility(
            ViewMatchers.Visibility.VISIBLE
    )));
}

答案 1 :(得分:1)

我遇到了类似的问题。我能够通过以下方式解决它:

  1. 按照here所描述的消除动画。

  2. 我在从服务器获取数据后显示了SnackBar,因此我还要等到获取数据。我设法使用IdlingResource anwser中描述的this来解决它。

  3. 然后我能够成功检查SnackBar。

    我希望我的观点有所帮助。