Tools for using aXe for web accessibility testing with C# and Selenium. Inspired on axe-selenium-java Forked from Globant.Selenium.Axe
This project born as a need to have a clean .NET wrapper for aXe.
Install via Nuget:
PM> Install-Package Selenium.Axe
Import this namespace:
using Selenium.Axe;
and call the extension method Analyze
from your WebDriver object
IWebDriver webDriver = new ChromeDriver();
AxeResult results = webDriver.Analyze();
*Current build only offically supports Chrome
Work in progress!!