XCTestCase:不能按导航栏中的自定义栏按钮

时间:2020-06-15 13:49:54

标签: ios swift testing xctest xcode-ui-testing

我正在为iOS应用程序编写测试,但无法单击自定义栏按钮。这是一个带有UIImageView的条形按钮。 该图像具有accessibilityIdentifier = "settingsBarImage",并且 条形按钮上有一个accessibilityIdentifier = "settingsBarButton"

当我使用print(app.debugDescription)打印窗口小部件树时,该按钮存在并且可以点击。

NavigationBar, 0x60000320b480, {{0.0, 44.0}, {375.0, 44.0}}, identifier: 'Overview'
     Button, 0x60000320b560, {{16.0, 51.0}, {30.0, 30.0}}, identifier: 'settingsBarButton', label: 'Your profile picture.'
     StaticText, 0x60000320b640, {{150.0, 55.7}, {75.0, 20.3}}, label: 'Overview'

我尝试过:

app.navigationBars.button.firstMatch.tap()

app.navigationBars["Overview"].buttons["settingsBarButton"].tap()

app.buttons["settingsBarButton"].tap()

app.otherElement["settingsBarButton"].tap()

及其所有组合。

结果总是相同的:

t =    14.74s Tap Button
t =    14.74s     Wait for com.sap.mobile.apps.ProjectCompanion to idle
t =    14.77s     Find the Button
t =    15.82s         Find the Button (retry 1)
t =    16.87s         Find the Button (retry 2)
t =    16.92s         Collecting extra data to assist test failure triage
t =    16.92s             Requesting snapshot of accessibility hierarchy for app with pid 89909
t =    16.95s             Requesting snapshot of accessibility hierarchy for app with pid 89909
t =    17.06s         Assertion Failure: OverviewScreenBase.swift:31: Failed to get matching snapshot: No matches found for first query match sequence: `Descendants matching type NavigationBar` -> `Descendants matching type Button`, given input App element pid: 89909 (no attribute values faulted in)
Possibly caused by runtime issues:

如果有人遇到此问题,我将非常感谢。

最好的问候, 鸡

编辑:经过更多的实验,我获得了更多信息。 通过正常运行应用程序创建settingsBarButton时,isAccessibilityElement返回true,但是在测试期间,它返回false。

2 个答案:

答案 0 :(得分:0)

看起来该按钮不是导航栏的子视图。

改为尝试app.buttons["settingsBarButton"].tap()


这个小扩展有时会有所帮助。

extension XCUIElement {
    func tapUnhittable() {
        XCTContext.runActivity(named: "Tap \(self) by coordinate") { _ in
            coordinate(withNormalizedOffset: CGVector(dx: 0.0, dy: 0.0)).tap()
        }
    }
}

尝试app.buttons["settingsBarButton"].tapUnhittable()

答案 1 :(得分:-1)

您可以尝试的一件事是尝试直接点击元素:

app.buttons["settingsBarButton"].tap()

如果这也不起作用,请尝试:

if app.otherElements["settingsBarButton"].exists {
    app.otherElements["settingsBarButton"].tap()
}

此外,有可能由于正在加载页面而导致元素尚未出现。在这种情况下,您可以尝试等待元素被加载,

let settingButton = app.buttons["settingsBarButton"]
let predicate = NSPredicate(format: "exists == true")
let theExpectation = expectation(for: predicate, evaluatedWith: settingButton, handler: nil)
_ = XCTWaiter().wait(for: [theExpectation], timeout: 5)
if settingButton.exists {
    settingButton.tap()
}

如果测试仍然失败,则可能不是测试问题,并且按钮点击实际上不起作用。因此,请确保还要检查您的代码。