Daniele Segato
06/01/2021, 11:59 AMColumn: tag A
TextField: tag field
Text: tag error
Column: tag B
TextField: tag field
Text: tag error
Column: tag C
TextField: tag field
Text: tag error
If i want to match the TextField tagged "field" inside the column tagged "B", how do I write the SemanticMatcher?Zach Klippenstein (he/him) [MOD]
06/01/2021, 1:01 PMwithParent
matcher and onChildren
or something.Daniele Segato
06/01/2021, 1:04 PMcomposeTestRule.onNode(hasParent(hasTestTag("B")) + hasTestTag("field"))
hasParent is there, but I'm not sure how to combine it with the child tagDaniele Segato
06/01/2021, 1:05 PMcomposeTestRule.onNode(hasParent(hasTestTag("B")) and hasTestTag("field"))
just and? gee that's awesome