Skip to content

Tools for using aXe for web accessibility testing with C# and Selenium.

License

Notifications You must be signed in to change notification settings

javnov/axe-selenium-csharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

axe-selenium-csharp

Tools for using aXe for web accessibility testing with C# and Selenium. Inspired on axe-selenium-java

This project born as a need to have a clean .NET wrapper for aXe.

Work in progress!! Stay tunned.

Getting Started

Install via Nuget:

PM> Install-Package Globant.Selenium.Axe

Import this namespace:

using Globant.Selenium.Axe;

and call the extension method Analyze from your WebDriver object

IWebDriver webDriver = new FirefoxDriver();
AxeResult results = webDriver.Analyze();

Documentation

Work in progress!!

Thanks

Specially thanks to @jdmesalosada to make this happen and to always improve our jobs.