我有以下视图层次结构(使用视图调试器验证):
UIView "Page1"
UIScrollView
UILabel
UISegmentedControl
UIView
UIView "Group1"
UILabel
UISegmentedControl "Selector1"
po app.otherElements["Page1"].otherElements["Group1"].hittable -> true
po app.otherElements["Page1"].otherElements["Group1"].segmentedControls.count -> 0
po app.otherElements["Page1"].otherElements["Group1"].descendantsMatchingType(XCUIElementType.Any).count -> 0
po app.otherElements["Page1"].descendantsMatchingType(XCUIElementType.Any).count -> 12
对我来说,这看起来好像XCUIElementQuery无法深入挖掘UIView。
有人可以确认或帮我识别我的错误。