我正在尝试新的 Android 测试库 Espresso。当我尝试:
onView(withId(R.id.gettingStarted))
测试运行良好。但是当我尝试时:
onView(withId(R.id.gettingStarted)).check(matches(isDisplayed()));
我得到一个.NoMatchingViewException: No views in hierarchy found matching: with id: is <2131296645>
有没有人见过这样的事情?我最初的反应是这只是一个错误,因为 Espresso 仅在 1.0 版上。我正在使用 Android Studio 并完全按照设置说明进行操作。