https://github.com/javnov/axe-selenium-csharp
Tools for using aXe for web accessibility testing with C# and Selenium.
https://github.com/javnov/axe-selenium-csharp
adapter axe c-sharp csharp selenium wcag webdriver
Last synced: 5 months ago
JSON representation
Tools for using aXe for web accessibility testing with C# and Selenium.
- Host: GitHub
- URL: https://github.com/javnov/axe-selenium-csharp
- Owner: javnov
- License: mit
- Created: 2017-03-07T20:02:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-24T16:31:54.000Z (about 6 years ago)
- Last Synced: 2024-11-16T01:17:43.947Z (6 months ago)
- Topics: adapter, axe, c-sharp, csharp, selenium, wcag, webdriver
- Language: C#
- Size: 88.9 KB
- Stars: 12
- Watchers: 11
- Forks: 11
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# axe-selenium-csharp
Tools for using aXe for web accessibility testing with C# and Selenium. Inspired on [axe-selenium-java](https://github.com/dequelabs/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:
```powershell
PM> Install-Package Globant.Selenium.Axe
```Import this namespace:
```csharp
using Globant.Selenium.Axe;
```and call the extension method ```Analyze``` from your WebDriver object
```csharp
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.