Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luizmarcus/463316b057138e359dde to your computer and use it in GitHub Desktop.
Save luizmarcus/463316b057138e359dde to your computer and use it in GitHub Desktop.
@Test
public void executarTesteLoginContaErrada() {
//Insere o usuário no campo user
onView(withId(R.id.user)).perform(typeText("Usuario"), closeSoftKeyboard());
//Insere a senha no campo pass
onView(withId(R.id.pass)).perform(typeText("Senha"), closeSoftKeyboard());
//Clica no botao submit
onView(withId(R.id.submit)).perform(click());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment