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() { }
网友评论