Skip to content

Instantly share code, notes, and snippets.

@edwardharks
Created February 28, 2018 14:58
Show Gist options
  • Select an option

  • Save edwardharks/e95783042a91612b3e2dc981f1e30fdc to your computer and use it in GitHub Desktop.

Select an option

Save edwardharks/e95783042a91612b3e2dc981f1e30fdc to your computer and use it in GitHub Desktop.
object SelectsActions {
fun logout() {
onView(allOf(withId(R.id.login_button), withText(R.string.logout))).perform(click())
}
fun login() {
onView(allOf(withId(R.id.login_button), withText(R.string.login))).perform(click())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment