Reputation: 31
We are writing something like an Assistive User Agent, which reads screens using Accessibility API and provides help to users. UIA does not seem to be natively supported by Chrome and Firefox. This is causing our implementation to break when Chrome or Firefox updates. What would be the accessibility apis that work on both Chrome and Firefox other than Microsoft UIA.
Upvotes: 2
Views: 1196
Reputation: 1423
Chrome actually has support for iAccessible, but it is not turned on by default and needs to be operated manually on the following page.
chrome://accessibility/
Upvotes: 1
Reputation: 2707
The accessibility APIs implemented in both Chrome and Firefox on Windows are Microsoft Active Accessibility (MSAA) and IAccessible2. See
Upvotes: 0