Can anyone help me with nested `testTag`s failing ...
# compose
a
Can anyone help me with nested `testTag`s failing to be taken into account? More info in 🧵
q
@Alexandru Gheorghe Yes you need to make sure that the root of your composable had enabled this
Copy code
Modifier
    .semantics {
        testTagsAsResourceId = true
    }
in your case you need to add this into your MainActivity
Copy code
Surface
a
Yes, about this: I tried with it and I still get the same error.
I get it with instrumentation tests.
v
Maybe you need to
useUnmergedTree
?