如何编写等待 UISwitch 启用的 UI 测试 (XCTestCase)。
我将此代码添加到我的一项测试中,但它超时了:
let firstSwitch = XCUIApplication().switches.elementBoundByIndex(0)
_ = self.expectationForPredicate(
NSPredicate(format: "self.value = %@", enabled),
evaluatedWithObject: firstSwitch,
handler: nil)
self.waitForExpectationsWithTimeout(15.0, handler: nil)