0
ViewInteraction textView1 = onView(allOf(withText("Me"), isDisplayed()));
textView1.perform(click());無法點擊選項卡按鈕
作品。
記錄儀的記錄
ViewInteraction relativeLayout = onView(
allOf(withClassName(is("android.widget.RelativeLayout")),
withParent(withId(android.R.id.tabs)),
isDisplayed()));
relativeLayout.perform(click());
不工作。這將是很好,有人幫我不能直接使用Text「我」,並與ID接近它(因爲它是一個多語種的應用程序)
你能提供完整的代碼 –