XCUITest意外行为

时间:2017-01-14 11:47:33

标签: ios swift xctest

我有一个带有tableView和detail vc的简单项目。 tableView显示20行“cell(n)”文本,详细视图显示按下单元格的标签。 我想断言给定一个单元格,我得到了详细的vc标签中tableView中找到的文本。因此,例如,如果我点击包含“单元格3”的单元格3,我想获取此文本,而不是硬编码,并断言我可以在详细信息vc中找到此文本。

func testCanNavigateToDetailVCWithTheTextFromCell() {
    let labelInTableView = app.staticTexts["cell 3"]

    labelInTableView.tap()

    let labelInDetailVC = app.staticTexts[labelInTableView.label]
    XCTAssertTrue(labelInDetailVC.exists)
}

这似乎有效。但我想这样做:

func testCanNavigateToDetailVCWithTheTextFromCellV2() {
    let cell = app.tables.element.cells.element(boundBy: 3)  //Get the third cell of the unique tableView

    cell.tap()

    let textFromPreviousCell = cell.staticTexts.element(boundBy: 0).label  //Since is a "Basic" cell it only has one label.
    //I will also want to set an accessilibtyIdentifier to the label and access it via cell.staticTexts["id"].label
    let labelInDetailVC = app.staticTexts[textFromPreviousCell]
    XCTAssertTrue(labelInDetailVC.exists)
}

我设置了一个包含此问题的项目here

1 个答案:

答案 0 :(得分:1)

问题是你在点击它后试图获取单元格的文本。这意味着单元格不再出现在屏幕上(新屏幕已出现)。您需要做的就是更改行cell.tap()let textFromPreviousCell = cell.staticTexts.element(boundBy: 0).label的顺序。请参阅以下新功能:

func testCanNavigateToDetailVCWithTheTextFromCellV2() {
    let cell = app.tables.element.cells.element(boundBy: 3)  //Get the third cell of the unique tableView

    let textFromPreviousCell = cell.staticTexts.element(boundBy: 0).label  //Since is a "Basic" cell it only has one label.

    cell.tap()

    let labelInDetailVC = app.staticTexts[textFromPreviousCell]
    XCTAssertTrue(labelInDetailVC.exists)
}