你好我正在UITests
学习
我有个问题
如何检测附件视图的点击tableViewCell
?在 UITest
下面是我的tableViewCell
我想检测细节关闭配件视图的水龙头
像这样
app.tables.cells.buttons["FTCellAccesoryIdentifier"].tap()
但附件是UIView
cellForRows
所以我在函数中分配 accisibility identifier key
cell.accessoryView?.accessibilityIdentifier ="FTCellAccesoryIdentifier"
我的测试功能是
我试试
app.tables.cells.elementBoundByIndex(lastCellIndex).otherElements.elementMatchingType(.Any, identifier: "FTCellAccesoryIdentifier").tap()
但不工作
可以在 UITests 中点击单元格的 accesoryView 吗?