Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 956 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 956 Bytes

Build Status

axe-selenium-csharp

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.

Getting Started

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();

Documentation

*Current build only offically supports Chrome
Work in progress!!