Prueba del show de Snackbar con Espresso
¿Hay alguna forma de probar con Espresso que la barra de snack aparece con el texto correcto?
Tengo una simple llamada para crear un snack bar
Snackbar.make(mView, "My text", Snackbar.LENGTH_LONG).show();
He intentado esto sin suerte
onView(withText("My text")).inRoot(withDecorView(not(is(mActivityRule.getActivity().getWindow().getDecorView())))).check(matches(isDisplayed()));