Skip to content

Instantly share code, notes, and snippets.

@ngallazzi
Created December 29, 2023 14:44
Show Gist options
  • Save ngallazzi/0136758574a63547b53ae93cb8c5eca6 to your computer and use it in GitHub Desktop.
Save ngallazzi/0136758574a63547b53ae93cb8c5eca6 to your computer and use it in GitHub Desktop.
Common compose Ui tests actions
class MyLayoutTest {
@get:Rule
val composeTestRule = createAndroidComposeRule<ComponentActivity>()
@Test
fun testGreetingButtonClick() {
composeTestRule.setContent {
MyLayout()
}
composeTestRule.onNodeWithContentDescription(
"Greeting Button"
).performClick()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment