如果总是显示按钮,那很好。但是我的按钮是隐藏的,只有在点击单元格时才会出现。这是示例项目:项目源
我尝试了不同的方法,但没有运气。这是我在 UItest 中的代码:
func testExample() {
let firstCell = XCUIApplication().tables.cells.elementBoundByIndex(0)
firstCell.tap()
let button = firstCell.buttons["hoang"] // Accessibility Identifier:hoang
if button.hittable {
button.tap()
}
}