Marc Fearby
05/07/2023, 8:41 AMandroidx.compose.ui.test
visible (so that I can see them)? I’m having trouble with something and it would help to be able to see the UI as the test is trying to execute.Alexander Maryanovsky
05/08/2023, 1:34 PMAlexander Maryanovsky
05/08/2023, 1:35 PMMarc Fearby
05/11/2023, 11:52 AMMarc Fearby
05/20/2023, 3:11 AMAlexander Maryanovsky
05/20/2023, 11:32 AMGiorgi
06/30/2023, 7:13 PMclass FilePickTest {
@get:Rule
val rule = createComposeRule()
@Test
fun blah() {
rule.setContent {
Button(onClick = {
println("button clicked")
}) {
Text("print stuff")
}
}
rule.onNodeWithText("print stuff").performClick()
runBlocking { delay(5_000) }
}
}
I'd like to see the button and if possible interact with itAlexander Maryanovsky
06/30/2023, 8:39 PM