如何使 UIControl 在 XCUITest 中显示为按钮?

Posted

技术标签:

【中文标题】如何使 UIControl 在 XCUITest 中显示为按钮?【英文标题】:How can I make UIControl appear as a button in XCUITest? 【发布时间】:2016-12-09 11:46:20 【问题描述】:

我创建了一个 UIControl 的子类,它的行为应该类似于 UIButton。

当我使用 XCUITest 运行 UI 测试时,按钮出现在 XCUIApplication().staticTexts 而不是预期的 XCUIApplication().buttons

【问题讨论】:

【参考方案1】:

在四处寻找之后,我发现这归结为未设置可访问性特征。例如,如果我有以下课程;

class ActivityButton: UIControl 

    private let activityIndicator: UIActivityIndicatorView = 
        let activityIndicator = UIActivityIndicatorView()
        activityIndicator.hidesWhenStopped = true
        activityIndicator.translatesAutoresizingMaskIntoConstraints = false
        return activityIndicator
    ()

    let titleLabel: UILabel = 
        let titleLabel = UILabel()
        titleLabel.translatesAutoresizingMaskIntoConstraints = false
        return titleLabel
    ()

    override public init(frame: CGRect) 
        super.init(frame: frame)
        // This is the required call to make the control appear 
        // as a button in ui tests
        accessibilityTraits = UIAccessibilityTraitButton
        addSubview(activityIndicator)
        addSubview(titleLabel)
        createConstraints()
        


【讨论】:

以上是关于如何使 UIControl 在 XCUITest 中显示为按钮?的主要内容,如果未能解决你的问题,请参考以下文章

使 UIControl 仅接受滑动手势并传递触摸/点击手势

有没有办法使用 TeX(希腊字母、下标、上标等)使 octave 解释 uicontrol 静态文本中的字符串?

XCUITest - 如何访问 XCUITest 中的应用设备令牌以触发推送通知,但无需在应用代码中设置任何 UIView?

UIControl

如何在 XCUITest 中进行“页面”对象设计

XCUITest - 如何检查 webview 是不是已更新其内容?