android automation android-viewpager espresso

Cómo probar ver el gesto de deslizar el buscapersonas en Android usando Espresso 2.2



automation android-viewpager (2)

Estoy escribiendo una prueba de automatización para View pager usando Espresso 2.2 en el que necesito probar la funcionalidad de deslizamiento.

He escrito el siguiente código:

@LargeTest public class FirstActivityTest { @Rule public ActivityTestRule<FirstActivity> firstActivityTestRule = new ActivityTestRule<>( FirstActivity.class); @Test public void testViewPagerSwipeFunctionality() throws InterruptedException{ onView(withId(R.id.tv_commu)).check(matches(withText(R.string.first_screen_text))); onView(withId(R.id.tv_skip)).check(matches(withText(R.string.skip))) ; onView(withId(R.id.radio_button_first)).check(matches(isChecked())); onView(withId(R.id.view_pager)).perform(swipLeft()); onView(withId(R.id.radio_button_second)) .check(matches(isChecked())); onView(withId(R.id.tv_comp)).check(matches(withText(R.string.second_screen_text))); onView(withId(R.id.tv_skip)).check(matches(withText(R.string.skip))) ; onView(withId(R.id.view_pager)).perform(swipeLeft()); onView(withId(R.id.radio_button_third)) .check(matches(isChecked())); onView(withId(R.id.tv_skip)).check(matches(withText(R.string.skip))) ; onView(withId(R.id.tv_person)).check(matches(withText(R.string.third_screen_text)));}}

Sin embargo, el método swipeLeft () no se está resolviendo. Por favor, hágame saber dónde estoy haciendo mal? Tu ayuda será altamente apreciada.


Tienes que importar swipeLeft () como:

import static android.support.test.espresso.action.ViewActions.swipeLeft;

Nota al margen: el código de ejemplo tiene swipLeft () en lugar de swipeLeft ().


Incluso si puede deslizar, verá la acción, pero la prueba aún fallará. Por defecto, Espresso valida el 90% de visibilidad y falla de lo contrario. Necesita personalizar la visibilidad usted mismo, básicamente bájelo. Consulte esta solución: Espresso: cómo probar SwipeRefreshLayout? ¡Espero que esto ayude!