| The only way I'm aware of today is to learn to use assistive technologies and use them on the right combinations of browser/OS/version. These are recommendations for common combinations. [0] I've given the CI deal a good amount of thought. You'd have to go through the trouble of: - Provisioning a Windows VM with specific versions of browsers (e.g. IE11) and AT (e.g. JAWS 17, the versions differ quite significantly) - Writing an automation suite that is capable of controlling the browser and AT (Selenium probably does fine), but crucially interpreting the feedback from the assistive tool to check for correctness. This is tremendously hard. Either using some debugging APIs if any exist in the various assistive tools, or reading memory / reverse engineering using IDA, or capturing the audio output to the sound card and running it through speech recognition to figure out if what was said by the screen reader is what you'd expect. With something like Dragon Dictate you'd have to figure out how to trigger voice commands. - Expose the VM using an API that you can call from your test suite - `expect(jawsOutput).toBe("Type in two or more characters for results.")` That's a potentially tremendously profitable SaaS offering (to the right companies), if someone can build it. [0]: https://accessibility.blog.gov.uk/2016/11/01/results-of-the-... |