我尝试在 xcode 7 beta 上进行 UI 测试。
解除 XCUIElement 后,其.exists
属性仍保持为 YES。
例如
XCUIElement *button = app.sheets[@"Sample sheet"].buttons[@"Sample button"];
[button tap]; // Tapping will dismiss UIActionSheet and its button will no longer exist.
XCTAssertFalse(button.exists); // -> Error here.
有什么方法可以检测被解雇后不存在的 XCUIElement 吗?