检查应用程序是否在XCUITests中退出

时间:2017-04-29 09:23:13

标签: ios swift xcode

我正在编写一个测试用例,我想知道应用程序是否已退出,

    let app = XCUIApplication()
    app.launch()
    ...             // After few statements
    if app.exists {
        print("App exists")
    }
    else{
        print("App got killed")
    }

在条件声明之前,应用程序被杀死,因此app.exists失败。

1 个答案:

答案 0 :(得分:0)

这可能会解决您的问题

func appExists() -> Bool{
    return appDriver!.accessibilityActivate()
}