Fudge
08/12/2022, 2:34 PMonNodeWithText("foo").assertHasClickAction() // OK
onAllNodesWithText("foo").assertAll(hasClickAction()) // OK
onNodeWithText("foo").assertExists() // OK
onAllNodesWithText("foo").assertAll(exists()) // No exists() or similar method for assertExists()?
Am I missing something? How do I test everything in a node collection exists?Christophe Dongieux
10/24/2023, 8:40 AMFudge
10/24/2023, 7:04 PMChristophe Dongieux
10/25/2023, 6:44 AM