这个问题在这里已经有了答案:
Best Answer-推荐答案 strong>
您可以在XCTest
中使用addUIInterruptionMonitor
来处理UIAlertController
。
let handler = addUIInterruptionMonitor(withDescription: "alert handler") { (alert: XCUIElement) -> Bool in
let ok = alert.buttons["OK"]
XCTAssertTrue(ok.exists, "OK button doesn't exist")
ok.tap()
}
关于ios - 如何检查在xcode中的xctest案例中显示的警报 View ,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37861644/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) |
Powered by Discuz! X3.4 |