I'm trying to build a test that validates my PreferenceScreen
view with Espresso. The text that I want to click on is at the bottom. So how do I scroll down in a PreferenceScreen
with Espresso ?
I tried this code, but it did not work:
onData(allOf(is(instanceOf(String.class)), is("Notifications"))).perform(click());