如果按钮总是显示,那就没关系了。但我的按钮是隐藏的,只有在按下细胞时才会出现。这是示例项目:project source
我尝试了不同的方法,但没有运气。这是我在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()
}
}