等待所有 HTTP 请求在 XCode UI 测试中完成?
Posted
技术标签:
【中文标题】等待所有 HTTP 请求在 XCode UI 测试中完成?【英文标题】:Wait for all HTTP requests to finish in XCode UI tests? 【发布时间】:2016-03-31 02:21:41 【问题描述】:在 XCode 中测试 UI 时,有没有办法等待所有网络请求完成?
我有一个应用程序,它发送 HTTP 请求以从服务器获取一些数据,并且在 UI 测试中,我想在继续之前等待检索这些数据。目前我正在使用sleep(1)
,但这种方法似乎并不可靠。
【问题讨论】:
【参考方案1】:最好的办法是等待一些 UI 元素出现或消失。这样想:
框架就像一个用户。它不关心幕后运行的是什么代码。唯一重要的是屏幕上可见的内容。
也就是说,您可以在 UI 测试中使用wait for a label titled "Go!" to appear。
let app = XCUIApplication()
let goLabel = self.app.staticTexts["Go!"]
XCTAssertFalse(goLabel.exists)
let exists = NSPredicate(format: "exists == true")
expectationForPredicate(exists, evaluatedWithObject: goLabel, handler: nil)
app.buttons["Ready, set..."].tap()
waitForExpectationsWithTimeout(5, handler: nil)
XCTAssert(goLabel.exists)
您也可以extract that into a helper method。如果您使用一些 Swift 编译器魔法,您甚至可以在 调用该方法的行上显示失败消息。
private fund waitForElementToAppear(element: XCUIElement, file: String = #file, line: UInt = #line)
let existsPredicate = NSPredicate(format: "exists == true")
expectationForPredicate(existsPredicate, evaluatedWithObject: element, handler: nil)
waitForExpectationsWithTimeout(5) (error) -> Void in
if (error != nil)
let message = "Failed to find \(element) after 5 seconds."
self.recordFailureWithDescription(message, inFile: file, atLine: line, expected: true)
【讨论】:
【参考方案2】:您可以使用委托或完成块设置您的方法,并在您的测试用例中使用XCTestExpectation
,当数据返回时您可以使用fulfill
。
【讨论】:
以上是关于等待所有 HTTP 请求在 XCode UI 测试中完成?的主要内容,如果未能解决你的问题,请参考以下文章