6

我收到一个错误

No matches found for Find: Descendants matching type NavigationBar from input {( Application, 0x60400019b790, pid: 20515, label: '<appname>' )}

但是代码是由 XCUITest 的录制功能生成的,所以我不明白为什么它找不到导航栏。我添加了accessibilityIdentifier一个本地化字符串,调用dashboardNavBar它来尝试使用它来查找它,但我无法查询它。我正在使用的当前代码是:

func testLoginLogout() {
    let app = XCUIApplication()
    //login credentials and other code that takes me to dashboard of app
    app.navigationBars["Dashboard"].children(matching: .button).element(boundBy: 2).tap()
    app.sheets["Do you want to Logout ?"].buttons["OK"].tap()
}

app.navigationBars...行是引发上述错误的行。我希望有人能告诉我为什么它无法找到这个导航栏或任何问题,以及我如何修复它或使用accessibilityIdentifier. 谢谢。

4

1 回答 1

1

我知道这可能是一种解决方法,而不是真正的解决方案,但是当我遇到此问题时,我所做的是添加检查元素是否存在并尝试两次运行相同的操作。当您在此操作后进行 segue 时,该元素不应该存在,并且不会执行第二次调用尝试。例如:

    func testLoginLogout() {
            let app = XCUIApplication()
            if (app.navigationBars["Dashboard"].children(matching: .button).element(boundBy: 2).exists) {
                app.navigationBars["Dashboard"].children(matching: .button).element(boundBy: 2).tap()
            }
// and if you will call it again the element should not exists, otherwise it will be called again

            if (app.navigationBars["Dashboard"].children(matching: .button).element(boundBy: 2).exists) {
                app.navigationBars["Dashboard"].children(matching: .button).element(boundBy: 2).tap()
            }

            if (app.sheets["Do you want to Logout ?"].buttons["OK"].exists) {
                app.sheets["Do you want to Logout ?"].buttons["OK"].tap()
            }
        }
于 2020-02-08T08:55:17.123 回答