UISwitch が有効になるのを待つ UI テスト (XCTestCase) を作成する方法。
このコードをテストの 1 つに追加しましたが、タイムアウトになりました。
let firstSwitch = XCUIApplication().switches.elementBoundByIndex(0)
_ = self.expectationForPredicate(
NSPredicate(format: "self.value = %@", enabled),
evaluatedWithObject: firstSwitch,
handler: nil)
self.waitForExpectationsWithTimeout(15.0, handler: nil)