2016-04-25 47 views
4

我有一個簡單的線性佈局,裏面有兩個文字瀏覽。線性佈局具有唯一的ID,但textviews沒有。我如何驗證其中一個文本來自這些文字瀏覽?Espresso Android與父母內部的textviews匹配

我嘗試下面的代碼:

onView(allOf(NavigationDrawerComponent.topSectionWrapper, 
       hasSibling(withClassName(Matchers.equalTo(TextView.class.getSimpleName()))))) 
       .check(matches(withText(Data.fullUserName))); 

不幸的是,它的工作不適合我。我正在以下錯誤:

android.support.test.espresso.NoMatchingViewException: No views in 
    hierarchy found matching 

回答

4

使用hasDescendant()

onView(withId(R.id.recycler_view)).check(matches(atPosition(0, hasDescendant(withText("Available")))));