所以我有一个自定义的UITextField,它也有一个自定义视图中的浮动标签(使用JVFloatLabeledTextField)。在我的自定义视图类中,我将accessibility元素设置为JVFloatLabelTextField,如此
XCUIElement *textFieldElement = [[scrollViewQuery.otherElements matchingIdentifier:@"CustomView"] containingType:XCUIElementTypeTextField identifier:@"TextField"].element;

此元素不存在
XCUIElement *textFieldName = [scrollViewQuery.otherElements matchingIdentifier:@"CustomView"].otherElements[@"TextField"];

但是这个存在:
{{1}}
有没有人知道如何识别XCUIElement类型文本字段中的文本字段???谢谢!