Marcin Wisniowski
10/25/2023, 2:13 PMor
two SemanticsMatcher in a Compose test? I’m looking for something like composeTestRule.onNode(any(hasText("A"), hasText("B")))
to match a node that either has text A or B.David
10/25/2023, 2:18 PMcomposeTestRule.onNode(hasText("A").or(hasText("B")))
Marcin Wisniowski
10/25/2023, 2:34 PM