Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为我的 iOS 应用程序编写测试用例。我已经设法编写了 UI 测试,但我真的很困惑如何让我的应用程序等待 api 结束。举个例子,UI 测试正在进行中,并且在某些时候它按下了一个注册按钮并完成了通话后。现在我如何管理从那个 api 到 UI 测试的回调。
我知道有助于管理异步调用的期望,但我不知道如何将其调整到 UI 测试中。
这取决于返回的动作。例如,在登录的情况下,您将被重定向到新视图。因此,您可以简单地测试已知元素的存在。
let goLabel = app.staticTexts["Go!"] let exists = NSPredicate(format: "exists == true") expectation(for: exists, evaluatedWithObject: goLabel, handler: nil)