Skip to content

Instantly share code, notes, and snippets.

@prolificcoder
Created August 16, 2019 06:57
Show Gist options
  • Save prolificcoder/8b29eed038d32d3085b6be60214d05bb to your computer and use it in GitHub Desktop.
Save prolificcoder/8b29eed038d32d3085b6be60214d05bb to your computer and use it in GitHub Desktop.
@Test
fun clickButtonToSayHello()
{    
launchActivity(myActivity)
onView(withId(R.id.greet_button)).perform(click())  
onView(withText("Hello Steve!")).check(matches(isDisplayed()))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment