2016-03-11 13 views

cevap

18
@Test 
public void clickOnYourNavigationItem_ShowsYourScreen() { 
    // Open Drawer to click on navigation. 
    onView(withId(R.id.drawer_layout)) 
     .check(matches(isClosed(Gravity.LEFT))) // Left Drawer should be closed. 
     .perform(DrawerActions.open()); // Open Drawer 

    // Start the screen of your activity. 
    onView(withId(R.id.nav_view)) 
     .perform(NavigationViewActions.navigateTo(R.id.your_navigation_menu_item)); 

    // Check that you Activity was opened. 
    String expectedNoStatisticsText = InstrumentationRegistry.getTargetContext() 
     .getString(R.string.no_item_available); 
    onView(withId(R.id.no_statistics)).check(matches(withText(expectedNoStatisticsText))); 
} 

Tam olarak aradığınız şey budur.

Diğer örnekler here veya here

+0

ViewAction bozuldu karakterler özel navigateTo' 'için kaynak kodu bağlantısını Görünüşe mevcuttur. –

+0

@SudarsanGP Haklısınız. Android sdk'ye eklenmiş gibi görünüyor. Cevabı referansta güncelleyeceğim. Sadece android.support.test.espresso.contrib'de tanımlanan 'NavigationViewActions' kullanın – GVillani82

İlgili konular