在 MFC 应用程序中重写 IAccessible::get_accName 时出现问题
我目前正在开发一个正在进行重大升级的旧版 MFC 应用程序。我们正在改变的事情之一是我们测试的方式。我们想要为应用程序创建 GUI 自动化测试,为此,我们使用 UI 间谍来检查视觉元素,提取自动化名称和 ID 并帮助我们编写测试。然而,不幸的是,许多元素(即树项目、文本框)没有与之关联的自动化名称,我们想添加它们。根据我通过谷歌搜索找到的内容,重写 CWnd::get_accName 应该允许我们将可访问性 API 名称与元素相关联,但是当我重写它时,没有任何变化,并且我看不到新分配的名称。我错过了什么吗?有人可以指出我向 MFC 应用程序添加辅助功能信息的正确方向吗?
I'm currently working on a legacy MFC application undergoing a major upgrade. One of the things we're changing is how we test this. We want to create GUI automation tests for the application, and to that end, we're using UI spy to inspect the visual elements, pull out automation names and IDs and help us write our tests. However, unfortunately, a lot of elements (ie tree items, text boxes) don't have automation names associated with them, and we'd like to add them. From what I've been able to find by googling around, overriding CWnd::get_accName should allow us to associate accessibility API names with the elements, but when I override it, nothing changes and I can't see the newly assigned name. Have I missed something ? Can somebody please point me in the right direction for adding accessibility information to an MFC application ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您在 CWnd 派生类构造函数中调用
EnableActiveAccessibility()
。Ensure you are calling
EnableActiveAccessibility()
in the CWnd-derived class constructor.