这就是我在代码中设置它的方式:
let userBarButtonItem = UIBarButtonItem(image: userIcon,
style: .Plain,
target: self,
action: Selector("userButtonTapped:"))
userBarButtonItem.accessibilityIdentifier = "userBarButtonItem"
然后在里面UITestCase
我需要找到这个使用:
XCUIApplication().otherElements["userBarButtonItem"] //doesnt work, and the reason is:
断言失败:UI 测试失败 - 未找到“userBarButtonItem”的匹配项 其他
有没有办法例如使用谓词找到这个?