waitForNotDisplayed
@Sampled
fun waitForNotDisplayed() {
val interaction = composeTestRule.onNodeWithTag("test")
composeTestRule.waitUntil { interaction.isNotDisplayed() }
}Returns true if no matching node is displayed on screen.
@Sampled
fun waitForNotDisplayed() {
val interaction = composeTestRule.onNodeWithTag("test")
composeTestRule.waitUntil { interaction.isNotDisplayed() }
}