Xcode 7中的UITests:无法点击Cell上的Button

时间:2016-04-08 20:20:15

标签: ios swift uitest

如果按钮总是显示,那就没关系了。但我的按钮是隐藏的,只有在按下细胞时才会出现。这是示例项目:project source

enter image description here

我尝试了不同的方法,但没有运气。这是我在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()
    }
}

0 个答案:

没有答案