Skip to content

Instantly share code, notes, and snippets.

@grumpyshoe
Created February 9, 2017 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grumpyshoe/d2c324303b382d4aa75adb0c0f822a62 to your computer and use it in GitHub Desktop.
Save grumpyshoe/d2c324303b382d4aa75adb0c0f822a62 to your computer and use it in GitHub Desktop.
Android / Espresso / Spinner - How to click on a spinner item
onView(withId(R.id.spinner)).perform(click());
onView(allOf(withId(R.id.textview_in_custom_spinner), withText("DummyText"))).perform(click());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment