如何在 attributedPlaceholder 中设置可访问性标识符

How can set accessibility identifier in attributedPlaceholder

我有给定的一段代码

textField.attributedPlaceholder = NSAttributedString(string: Strings.test,
                                                             attributes: [NSAttributedString.Key.foregroundColor: ColorTheme.test])

如何在 attributedPlaceholder 中设置可访问性标识符,以便稍后在 UITest 中使用包含字符串?

您需要为您的文本字段提供辅助功能标识符。然后你可以通过 属性.

获取占位符文本
let textField = XCUIApplication().textFields["textFieldIdentifier"]
let placeholderText = textField.placeholderValue