-
-
Save ferPrieto/132b4f943c7b151a0e99c3c928906c22 to your computer and use it in GitHub Desktop.
This shows the elements that will be tested, identifying them using finders and semantics API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private val launchesTabItem by lazy { | |
composeTestRule.onNodeWithText( | |
"Launches" | |
) | |
} | |
private val launchesListItems by lazy { | |
composeTestRule.onAllNodesWithContentDescription( | |
"Item", | |
substring = true, | |
useUnmergedTree = true | |
) | |
} | |
private val connectionErrorMessage by lazy { | |
composeTestRule.onNodeWithText("AN ERROR OCCURRED", useUnmergedTree = true) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment