在 SwiftUI 中的 ActionSheet 上设置辅助功能标识符
Set Accessibility Identifier on ActionSheet in SwiftUI
如何在 SwiftUI 中为 ActionSheet 设置辅助功能标识符。
我想点击它的一个按钮,因为我需要为我的 XCUITest
识别它。
我目前正在为我的 :
尝试这个
app.sheets[""].buttons["Choose Photo"].tap()
使用以下方法修复了它:
app.sheets.firstMatch.buttons["Choose Photo"].tap()
如何在 SwiftUI 中为 ActionSheet 设置辅助功能标识符。
我想点击它的一个按钮,因为我需要为我的 XCUITest
识别它。
我目前正在为我的 :
尝试这个app.sheets[""].buttons["Choose Photo"].tap()
使用以下方法修复了它:
app.sheets.firstMatch.buttons["Choose Photo"].tap()