验证 iphone uiautomation 中的文本颜色
我正在使用 ios uiautomation 测试一个应用程序,我需要验证一些静态文本控件的颜色。这可能吗?我没有看到任何允许访问文本样式的方法或属性。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在使用 ios uiautomation 测试一个应用程序,我需要验证一些静态文本控件的颜色。这可能吗?我没有看到任何允许访问文本样式的方法或属性。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我不知道您已经使用 UI Automation 实现了多少,但如果您还没有投入太多,我强烈建议您使用
I don't know how much you have already implemented using UI Automation, but if you have not yet invested too much I would strongly recommend using FoneMonkey instead. It has an excellent script recording facility, outputs Objective C/SenTestCase scripts, and the scripts have full access to the internal of your program so that you can test color or any other property you like. It is easily extensible, and I have also generally found it to be much less of a pain to work with than UI Automation.
无法使用 iOS 上的标准辅助功能来执行此操作。您可以使用颜色的字符串表示形式修改元素的accessibilityValue,但这似乎会给视力受损的用户带来糟糕的体验。
There is no way to do this using standard accessibility on iOS. You could modify the accessibilityValue for the element with a string representation of the color, but this seems like it would create a poor experience for vision impaired users.