我遇到了无法在iOS10模拟器,Xcode 9,UITests中关闭通知,位置,照片访问权限警报的问题,但它在iOS11模拟器中运行良好。
我找到了讨论类似问题的线程,但没有任何有用的解决方法可以解决它。
https://forums.developer.apple.com/thread/86989
你试过吗
app.tap()
在您希望对话框的位置?
或者这种方法:https://useyourloaf.com/blog/handling-system-alerts-in-ui-tests/
这在 app.launch() 之后的设置方法中对我有用
addUIInterruptionMonitor(withDescription: "System Dialog") { (alert) -> Bool in
let savePasswordButton = alert.buttons["Save Password"]
if savePasswordButton.waitForExistence(timeout: 3) {
savePasswordButton.tap()
return true
}
let allowButton = alert.buttons["Allow"]
if allowButton.waitForExistence(timeout: 3) {
allowButton.tap()
return true
}
self.app.tap()
return false
}