Skip to content

Instantly share code, notes, and snippets.

@ngallazzi
Created December 29, 2023 14:34
Show Gist options
  • Save ngallazzi/faa195ac4b40cd743a8dfd19e916b32f to your computer and use it in GitHub Desktop.
Save ngallazzi/faa195ac4b40cd743a8dfd19e916b32f to your computer and use it in GitHub Desktop.
compose_ui_finders
class MyLayoutTest {
@get:Rule
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
@Test
fun testGreetingButtonClick() {
// Start the app
composeTestRule.setContent {
MyLayout()
}
// Finds a node with "Greeting Button" as content description
composeTestRule.onNodeWithContentDescription(
"Greeting Button"
).performClick()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment