gpt4 book ai didi

ios - XCode UITests 替代.StaticText

转载 作者:行者123 更新时间:2023-11-28 19:40:45 26 4
gpt4 key购买 nike

有没有办法连接到属性而不是 UI 元素的静态文本?

当我记录 UI 测试时,我得到以下内容

sidemenuTable.cells.containingType(.StaticText, identifier:"MULTIMEDIA").childrenMatchingType(.StaticText).matchingIdentifier("MULTIMEDIA").elementBoundByIndex(0).tap()

问题是静态文本在目标之间发生变化,导致测试失败。我希望能够访问 TableView 中对象的属性。例如。如果自定义单元格具有 cellType 属性。

这样测试就独立于 UI 元素内的文本。

最佳答案

您可以在元素的 accessibilityIdentifier 上使用 textLabel 快捷方式。这不会呈现给用户,因此无论元素的内容如何,​​您都可以使其相同。

生产代码:

cell.accessibilityIdentifier = "My Cell"

测试代码:

let app = XCUIApplication()
app.staticTexts["My Cell"].tap()

关于ios - XCode UITests 替代.StaticText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34456568/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com