我正在编写一个测试用例,我想知道应用程序是否已退出,
let app = XCUIApplication()
app.launch()
... // After few statements
if app.exists {
print("App exists")
}
else{
print("App got killed")
}
在条件声明之前,应用程序被杀死,因此app.exists失败。
答案 0 :(得分:0)
这可能会解决您的问题
func appExists() -> Bool{
return appDriver!.accessibilityActivate()
}