美文网首页
Xcode UITest遇到的坑

Xcode UITest遇到的坑

作者: 南国青天 | 来源:发表于2018-12-13 16:57 被阅读27次

    Xcode UI test - UI Testing Failure - Failed to scroll to visible
    fastlane snapshot exit status: 65

    当时用fastlane snapshot进行截图时, 总是出现以上两个错误。花了两天的时间终于找到原因了.

    这个是错误的写法:

    override func setUp() {
            continueAfterFailure = false
            setupSnapshot(app)
            app.launch()
            testExample() //这一行会导致重复执行。UITest会自动执行所有的TestXXXXX方法
        }
     func testExample() { }
    

    这个是正确的写法:

    override func setUp() {
            continueAfterFailure = false
            setupSnapshot(app)
            app.launch()
        }
     func testExample() { }
    

    相关文章

      网友评论

          本文标题:Xcode UITest遇到的坑

          本文链接:https://www.haomeiwen.com/subject/wcybhqtx.html