如何SearchView
在androidTest中提交一些文本?
onView(withId(R.id.search_src_text)).perform(typeText("text"))
对我不起作用 - 应用程序在此行崩溃
@Test
fun testSearchViewTextSubmit() {
ActivityScenario.launch(MainActivity::class.java)
onView(withId(R.id.search_action)).perform(click()) // ok
onView(withId(R.id.search_src_text)).perform(typeText("text")) // failed
}
androidx.test.espresso.NoMatchingViewException:层次结构中找不到匹配的视图:id:com.example.test:id/search_src_text