我使用 mac mojave 10.14.3 和 react-native 版本 - 0.59.1,fastlane 最新版本。我试图通过 ios xcuitest 运行 fastlane 屏幕截图但我无法关闭系统警报。我已附上我的代码和警报屏幕
请你帮助我好吗
addUIInterruptionMonitor(withDescription: "System Dialog") {
(alert) -> Bool in
let okButton = alert.buttons["OK"]
if okButton.exists {
okButton.tap()
}
let allowButton = alert.buttons["Allow"]
if allowButton.exists {
allowButton.tap()
}
return true
}
app.tap()
snapshot("04EndRecord")
这是我的警报和应用程序。此警报显示在应用程序之外,那么我该如何处理?