gpt4 book ai didi

swift - 使用 KIF 的简单测试用例失败

转载 作者:行者123 更新时间:2023-11-30 12:29:42 24 4
gpt4 key购买 nike

我尝试在 swift 项目中使用 KIF。我在 iPhone 模拟器上运行测试用例。可能我没有正确设置 KIF,因为第一次使用它。我用过这个manual

在这个简单的代码中测试失败

func testSelectingOrganizerRole() {
tester().tapView(withAccessibilityLabel: "组织")
}

有理由: enter image description here

Storyboard的初始 ViewConroller 上存在带有辅助功能标签“ORGANIZE”的按钮。

最佳答案

为什么不切换到 UI tests framework从 Xcode 7 开始可用?快速介绍:

UI testing gives you the ability to find and interact with the UI of your app in order to validate the properties and state of the UI elements.

UI testing includes UI recording, which gives you the ability to generate code that exercises your app's UI the same way you do, and which you can expand upon to implement UI tests. This is a great way to quickly get started writing UI tests.

使用这个框架,您的简单测试将如下所示:

let app = XCUIApplication()
app.launch()
app["ORGANIZE"].tap()

关于swift - 使用 KIF 的简单测试用例失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43722785/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com