微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

swift – XCUITest应用程序快捷方式

有没有办法在XCUITests中测试UIApplication快捷方式?

我知道,为了在模拟器中测试3D快捷方式,你需要一个带有强制触摸的触控板,但我想知道我是否可以编写测试我的快捷方式的测试.

解决方法

看起来是的!但是,您需要公开私有API.从 Facebook’s WebDriverAgent here导出的XCUIElement标头.

或者,如果这是你唯一需要的东西,那就把它暴露出来:

@interface XCUIElement (Private)
    - (void)forcePress;
@end

然后通过转到跳板并获取图标元素see my answer here来强制按下您的图标.

class Springboard {
    // this is another private method you'll need to expose (see linked other answer)
    static let springboard = XCUIApplication(privateWithPath: nil,bundleID: "com.apple.springboard")


    /// Open the 3d touch menu
    class func open3dTouchMenu() {
        XCUIApplication().terminate() // this may or may not be necessary depending on your desired function / app state

        // Resolve the query for the springboard rather than launching it
        springboard.resolve()

        // Force delete the app from the springboard
        let icon = springboard.icons["MyAppName"]
        if icon.exists {
            icon.forcePress()
            // do something with the menu that comes up
        }
    }
 }

*我还没有测试过这个.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐