Xcode UI测试-UI测试失败-点击搜索字段“取消”按钮时,无法滚动到可见(通过AX操作)
我试图通过点击搜索栏中的“取消”按钮来关闭搜索字段。 测试用例无法找到取消按钮。在Xcode 7.0.1中运行正常 我添加了谓词以等待按钮出现。当我们点击“取消”按钮时,测试用例失败 let button = app.buttons[“Cancel”] let existsPredicate = NSPredicate(format: "exists == 1") expectationForPredicate(existsPredicate, evaluatedWithObject: button, handler: nil) waitForExpectationsWithTimeout(5, handler: nil) button.tap() // Failing here 日志: t = 7.21s Tap SearchField t = 7.21s Wait for app to idle t = 7.29s Find the SearchField t = 7.29s …