【发布时间】:2017-01-24 12:20:19
【问题描述】:
在 UI 测试中,我可以使用以下代码获取第一个单元格:
let app = XCUIApplication()
app.launch()
let tablesQuery = app.tables
let cell = tablesQuery.children(matching:.any).element(boundBy: 0)
如何检查该单元格是否包含 imageview ?
【问题讨论】:
标签: ios swift xcode unit-testing uitest