本地化UI测试的系统通知?

时间:2016-10-20 14:20:46

标签: ios swift xcode8 xcode-ui-testing ui-testing

Xcode 8.0 中进行UI测试时,我遇到了有时系统发送类似于此的通知的问题

Location Notification

我遇到的问题是:我怎样才能确定我以各种语言驳回这些通知?有没有办法像在应用程序内部本地化键? 目前我检查给定处理程序内的通知:

handler = addUIInterruptionMonitorWithDescription("alert handler") 
    { (alert: XCUIElement) -> Bool in
       if alert.buttons["Allow"].exists {
            alert.buttons["Allow"].tap()
            return true
        }
        return false
    }

但是,即使系统语言发生变化,我还能做些什么呢? 提前致谢

0 个答案:

没有答案