字符串作为选择器传递给UI测试框架意味着什么

时间:2016-02-27 19:25:21

标签: ios objective-c xcode xcode7 xcode-ui-testing

传递给选择器方括号的字符串实际上意味着什么?

[app.images[@"swipeleft"] swipeLeft]; // The @"swipeleft" here

XCUIElement *element = app.buttons[@"icon share"]; // The @"icon share" here

对我来说,它可以代表控件的可见文本及其名称。我对吗?那么控制选择的实际行为是什么?

1 个答案:

答案 0 :(得分:1)

是的,你是对的。它可以是标签上的辅助功能标签或辅助功能标识符或文本。