Deque.AxeCore.Selenium
4.10.0
Prefix Reserved
dotnet add package Deque.AxeCore.Selenium --version 4.10.0
NuGet\Install-Package Deque.AxeCore.Selenium -Version 4.10.0
<PackageReference Include="Deque.AxeCore.Selenium" Version="4.10.0" />
paket add Deque.AxeCore.Selenium --version 4.10.0
#r "nuget: Deque.AxeCore.Selenium, 4.10.0"
// Install Deque.AxeCore.Selenium as a Cake Addin #addin nuget:?package=Deque.AxeCore.Selenium&version=4.10.0 // Install Deque.AxeCore.Selenium as a Cake Tool #tool nuget:?package=Deque.AxeCore.Selenium&version=4.10.0
Deque.AxeCore.Selenium
Automated web accessibility testing with .NET, C#, and Selenium. Wraps the axe-core accessibility scanning engine and the Selenium.WebDriver browser automation framework.
Compatible with .NET Standard 2.0+, .NET Framework 4.7.1+, and .NET Core 2.0+.
Getting Started
Install via NuGet:
PM> Install-Package Deque.AxeCore.Selenium
# or, use the Visual Studio "Manage NuGet Packages" UI
Ensure you have Playwright browsers installed. For reference, see https://playwright.dev/dotnet/docs/browsers
Import this namespace:
using Deque.AxeCore.Commons;
using Deque.AxeCore.Selenium;
To run an axe accessibility scan of a web page with the default configuration, create a new AxeBuilder
using your Selenium IWebDriver
object and call Analyze
:
IWebDriver webDriver = new ChromeDriver();
AxeResult axeResult = new AxeBuilder(webDriver).Analyze();
To cause a test to pass or fail based on the scan, use the Violations
property of the AxeResult
:
// We recommend FluentAssertions to get great error messages out of the box
using FluentAssertions;
axeResult.Violations.Should().BeEmpty();
To configure different scan options, use the chainable methods of the AxeBuilder
(reference docs):
AxeResult axeResult = new AxeBuilder(webDriver)
.Exclude(".css-class-of-element-with-known-failures")
.WithTags("wcag2a")
.Analyze();
For a complete working sample project that uses this library, see the C# sample in microsoft/axe-pipelines-samples.
AxeBuilder Reference
AxeBuilder.Analyze()
AxeResult axeResult = new AxeBuilder(webDriver).Analyze();
Runs an axe accessibility scan of the entire page using all previously chained options and returns an AxeResult
representing the scan results.
AxeBuilder.Analyze(IWebElement element)
IWebElement elementToTest = webDriver.FindElement(By.Id("nav-bar"));
AxeResult axeResult = new AxeBuilder(webDriver)
.Analyze(elementToTest);
Runs an axe accessibility scan scoped using all previously chained options to the given Selenium IWebElement
. Returns an AxeResult
representing the scan results.
Not compatible with AxeBuilder.Include
or AxeBuilder.Exclude
; the element passed to Analyze
will take precedence and the Include
/Exclude
calls will be ignored.
AxeBuilder.Include(string cssSelector)
AxeResult axeResult = new AxeBuilder(webDriver)
.Include(".class-of-element-under-test")
.Analyze();
Scopes future Analyze()
calls to include only the element(s) matching the given CSS selector.
Include
may be chained multiple times to include multiple selectors in a scan.
Include
may be combined with Exclude
to scan a tree of elements but omit some children of that tree. For example:
AxeResult axeResult = new AxeBuilder(webDriver)
.Include("#element-under-test")
.Exclude("#element-under-test div.child-class-with-known-issues")
.Analyze();
Include
is not compatible with Analyze(IWebElement)
- the Analyze
argument will take precedence and Include
will be ignored.
This overload of Include
only supports CSS selectors which refer to elements which are in the topmost frame of the page and not contained within a shadow DOM. To specify a selector in an iframe or a shadow DOM, see the overload that accepts an AxeSelector
.
AxeBuilder.Include(AxeSelector axeSelector)
AxeResult axeResult = new AxeBuilder(webDriver)
.Include(new AxeSelector("#element-inside-iframe", new List<string> { "#containing-iframe-element" }))
.Analyze();
Scopes future Analyze()
calls to include only the element(s) matching the given AxeSelector
.
Include
may be chained multiple times to include multiple selectors in a scan.
Include
may be combined with Exclude
to scan a tree of elements but omit some children of that tree. For example:
AxeResult axeResult = new AxeBuilder(webDriver)
.Include(new AxeSelector("#element-inside-iframe", new List<string> { "#containing-iframe-element" }))
.Exclude(new AxeSelector("#element-inside-iframe div.child-class-with-known-issues", new List<string> { "#containing-iframe-element" }))
.Analyze();
This overload of Include
supports complex AxeSelectors which specify elements inside iframes and/or shadow DOMs:
AxeSelector elementInNestedIframes = new AxeSelector("#element-in-nested-iframe", new List<string> { "#topmost-iframe", "#nested-iframe" });
AxeSelector elementInShadowDom = AxeSelector.FromFrameShadowSelectors(new List<IList<string>> { new List<string> { "#shadow-root-in-topmost-frame", "#element-in-shadow-dom" }});
AxeSelector elementInComplexFrameShadowLayout = AxeSelector.FromFrameShadowSelectors(new List<IList<string>> {
new List<string> { "#shadow-root-in-topmost-frame", "#nested-shadow-root", "#iframe-in-nested-shadow-dom" },
new List<string> { "#shadow-root-in-iframe", "#deeply-nested-target-element" }
});
AxeBuilder.Exclude(string cssSelector)
AxeResult axeResult = new AxeBuilder(webDriver)
.Exclude(".class-of-element-with-known-issues")
.Analyze();
Scopes future Analyze()
calls to exclude the element(s) matching the given CSS selector.
Exclude
may be chained multiple times to exclude multiple selectors in a scan.
Exclude
may be combined with Include
to scan a tree of elements but omit some children of that tree. For example:
AxeResult axeResult = new AxeBuilder(webDriver)
.Include("#element-under-test")
.Exclude("#element-under-test div.child-class-with-known-issues")
.Analyze();
Exclude
is not compatible with Analyze(IWebElement)
- the Analyze
argument will take precedence and Exclude
will be ignored.
This overload of Include
only supports CSS selectors which refer to elements which are in the topmost frame of the page and not contained within a shadow DOM. To specify a selector in an iframe or a shadow DOM, see the overload that accepts an AxeSelector
.
AxeBuilder.Exclude(AxeSelector axeSelector)
AxeResult axeResult = new AxeBuilder(webDriver)
.Exclude(new AxeSelector("#element-inside-iframe-with-known-issues", new List<string> { "#containing-iframe-element" }))
.Analyze();
Scopes future Analyze()
calls to exclude the element(s) matching the given CSS selector.
Exclude
may be chained multiple times to exclude multiple selectors in a scan.
Exclude
may be combined with Include
to scan a tree of elements but omit some children of that tree. For example:
AxeResult axeResult = new AxeBuilder(webDriver)
.Include(new AxeSelector("#element-inside-iframe", new List<string> { "#containing-iframe-element" }))
.Exclude(new AxeSelector("#element-inside-iframe div.child-class-with-known-issues", new List<string> { "#containing-iframe-element" }))
.Analyze();
Exclude
is not compatible with Analyze(IWebElement)
- the Analyze
argument will take precedence and Exclude
will be ignored.
This overload of Exclude
supports complex AxeSelectors which specify elements inside iframes and/or shadow DOMs:
AxeSelector elementInNestedIframes = new AxeSelector("#element-in-nested-iframe", new List<string> { "#topmost-iframe", "#nested-iframe" });
AxeSelector elementInShadowDom = AxeSelector.FromFrameShadowSelectors(new List<IList<string>> { new List<string> { "#shadow-root-in-topmost-frame", "#element-in-shadow-dom" }});
AxeSelector elementInComplexFrameShadowLayout = AxeSelector.FromFrameShadowSelectors(new List<IList<string>> {
new List<string> { "#shadow-root-in-topmost-frame", "#nested-shadow-root", "#iframe-in-nested-shadow-dom" },
new List<string> { "#shadow-root-in-iframe", "#deeply-nested-target-element" }
});
AxeBuilder.WithRules(params string[] axeRuleIds)
AxeResult axeResult = new AxeBuilder(webDriver)
.WithRules("color-contrast", "duplicate-id")
.Analyze();
Causes future calls to Analyze
to only run the specified axe rules.
For a list of the available axe rules, see https://dequeuniversity.com/rules/axe/3.3. The "Rule ID" at the top of each individual rule's page is the ID you would want to pass to this method.
WithRules
is not compatible with WithTags
or DisableRules
; whichever one you specify last will take precedence.
WithRules
is not compatible with the deprecated raw Options
property.
AxeBuilder.DisableRules(params string[] axeRuleIds)
AxeResult axeResult = new AxeBuilder(webDriver)
.DisableRules("color-contrast", "duplicate-id")
.Analyze();
Causes future calls to Analyze
to omit the specified axe rules.
For a list of the available axe rules, see https://dequeuniversity.com/rules/axe/3.3. The "Rule ID" at the top of each individual rule's page is the ID you would want to pass to this method.
DisableRules
is compatible with WithTags
; you can use this to run all-but-some of the rules for a given set of tags. For example, to run all WCAG 2.0 A rules except for color-contrast
:
AxeResult axeResult = new AxeBuilder(webDriver)
.WithTags("wcag2a")
.DisableRules("color-contrast")
.Analyze();
DisableRules
is not compatible with WithRules
; whichever one you specify second will take precedence.
DisableRules
is not compatible with the deprecated raw Options
property.
AxeBuilder.WithTags(params string[] axeRuleTags)
Causes future calls to Analyze
to only run axe rules that match at least one of the specified tags.
A "tag" is a string that may be associated with a given axe rule. See the axe-core API documentation for a complete list of available tags.
WithTags
is compatible with DisableRules
; you can use this to run all-but-some of the rules for a given set of tags. For example, to run all WCAG 2.0 A rules except for color-contrast
:
AxeResult axeResult = new AxeBuilder(webDriver)
.WithTags("wcag2a")
.DisableRules("color-contrast")
.Analyze();
WithTags
is not compatible with WithRules
; whichever one you specify second will take precedence.
WithTags
is not compatible with the deprecated raw Options
property.
AxeBuilder.WithOptions(AxeRunOptions options)
Note: in most cases, the simpler WithRules
, WithTags
, and DisableRules
can be used instead.
AxeResult axeResult = new AxeBuilder(webDriver)
.WithOptions(new AxeRunOptions()
{
RunOnly = new RunOnlyOptions
{
Type = "rule",
Values = new List<string> { "duplicate-id", "color-contrast" }
},
RestoreScroll = true
})
.Analyze();
Causes future calls to Analyze
to use the specified options when calling axe.run
in axe-core. See the axe-core API documentation for descriptions of the different properties of AxeRunOptions
.
WithOptions
will override any values previously set by WithRules
, WithTags
, and DisableRules
.
WithOptions
is not compatible with the deprecated raw Options
property.
Skip iFrames
If you don't want to run Axe on iFrames you can tell Axe skip with AxeRunOptions.
AxeResult axeResult = new AxeBuilder(webDriver)
.WithOptions(new AxeRunOptions()
{
Iframes = false
})
.Analyze();
Prevents Axe core from getting injected into page iFrames.
Causes future calls to Analyze
to use the specified options when calling axe.run
in axe-core. See the axe-core API documentation for descriptions of the different properties of AxeRunOptions
.
AxeBuilder.WithOutputFile(string filePath)
AxeResult axeResult = new AxeBuilder(webDriver)
.WithOutputFile(@"./path/to/axe-results.json")
.Analyze();
Causes future calls to Analyze
to export their results to a JSON file, in addition to being returned as an AxeResult
object as usual.
The output format is exactly the same as axe-core would have produced natively, and is compatible with other tools that read axe result JSON, like axe-sarif-converter.
AxeBuilder.AxeBuilder(webDriver, axeBuilderOptions)
This constructor overload enables certain advanced options not required by most Deque.AxeCore.Selenium
users. Currently, its only use is to allow you to use a custom axe-core
implementation, rather than the one that is packaged with this library.
AxeBuilderOptions axeBuilderOptions = new AxeBuilderOptions
{
ScriptProvider = new FileAxeScriptProvider(".\\axe.min.js")
};
AxeResult axeResult = new AxeBuilder(webDriver, axeBuilderOptions).Analyze();
AxeBuilder.UseLegacyMode(boolean legacyMode = true)
Set the frame testing method to "legacy mode". In this mode, axe will not open a blank page in which to aggregate its results. This can be used in an environment where opening a blank page causes issues.
With legacy mode turned on, axe will fall back to its test solution prior to the 4.3 release, but with cross-origin frame testing disabled. The frame-tested rule will report which frames were untested.
Important: Use of .UseLegacyMode()
is a last resort. If you find there is no other solution, please report this as an issue. It will be removed in a future release.
AxeResult axeResult = new AxeBuilder(webDriver)
.UseLegacyMode()
.Analyze();
Working with AxeResult objects
In most cases, you would run an axe scan from within a test method in a suite of end to end tests, and you would want to use a test assertion to verify that there are no unexpected accessibility violations in a page or component.
We strongly recommend FluentAssertions, a NuGet package that does a good job of producing actionable error messages based on the AxeResult
output from a scan. That said, if you prefer a different assertion library, you can still use this library; it does not require any particular test or assertion framework.
If you start with no accessibility issues in your page, you can stay clean by validating that the Violations list is empty:
IWebDriver webDriver = new ChromeDriver();
AxeResult results = new AxeBuilder(webDriver).Analyze();
results.Violations.Should().BeEmpty();
If you already have some accessibility issues & you want to make sure that you do not introduce any more new issues till you get to a clean state, you can use Exclude
to remove problematic elements from a broad scan, and a combination of Include
and DisableRules
to perform a more scoped scan of the element with known issues:
// Suppose #element-with-contrast-issue has known violations of the color-contrast rule.
// You could scan that element with the color-contrast rule disabled...
new AxeBuilder(webDriver)
.Include("#element-with-contrast-issue")
.DisableRules("color-contrast")
.Analyze()
.Violations.Should().BeEmpty();
// ...and then also scan the rest of the page with all rules enabled.
new AxeBuilder(webDriver)
.Exclude("#element-with-contrast-issue")
.Analyze()
.Violations.Should().BeEmpty();
Migrating from Selenium.Axe
(SeleniumAxeDotnet)
This project acts as a drop-in replacement for most of the functionality from the Selenium.Axe
NuGet package (SeleniumAxeDotnet). To migrate:
- Update your test
.csproj
file's<PackageReference>
forSelenium.Axe
toDeque.AxeCore.Selenium
- Add a new
<PackageReference>
toDeque.AxeCore.Commons
at the same version number asDeque.AxeCore.Selenium
- Update all
using Selenium.Axe;
statements in your tests tousing Deque.AxeCore.Selenium;
and/orusing Deque.AxeCore.Commons;
This project does not include a replacement for Selenium.Axe
's built-in HTML report functionality. We expect it to be split out into a separate standalone library (usable from either this package or Deque.AxeCore.Playwright
) at a later date, but there is currently no direct replacement.
Finally, there are a few minor breaking changes which won't impact most Selenium.Axe
users, but which may require updates if you use certain advanced features:
- The
.Target
and.XPath
properties ofAxeResultNode
orAxeResultRelatedNode
are now strongly-typedAxeSelector
objects. MostSelenium.Axe
users do not refer to these properties explicitly, but if your tests do, you will probably want to do so via theirToString()
representations. AxeRunOptions.FrameWaitTimeInMilliseconds
was renamed toAxeRunOptions.FrameWaitTime
to match the equivalentaxe-core
API. The usage is unchanged; it still represents a value in milliseconds.AxeResult.TestEngineName
andAxeResult.TestEngineVersion
were replaced by a separateAxeTestEngine
object containingName
andVersion
properties. You will have to replace usages ofAxeResult.TestEngineName
andAxeResult.TestEngineVersion
withAxeResult.TestEngine.Name
andAxeResult.TestEngine.Version
, respectively.- The already-deprecated
AxeBuilder.Options
property was removed; replace it withWithOptions
,WithRules
,WithTags
, and/orDisableRules
. - The
AxeResult.Error
property was removed; any errors that would have appeared here are instead reported as exceptions. - The
AxeBuilder.Include
andAxeBuilder.Exclude
overloads which accept more than one parameter have changed:- If you were using it to refer to an element inside a nested frame, replace it with the
Include
/Exclude
overloads which accept anAxeSelector
://old new AxeBuilder(webDriver).Include("#some-iframe", "#element-in-nested-frame").Analyze(); // new new AxeBuilder(webDriver).Include(new AxeBuilder("#element-in-nested-frame", new List<string> { "#some-iframe" })).Analyze();
- If you were using it to refer to multiple elements in the main frame of the page under test, replace it with multiple
Include
/Exclude
calls (one per element):// old // This wasn't doing what you meant it to and may have been hiding issues; this // would have looked for #bar elements inside an iframe with selector #foo, *not* // for sibling #foo and #bar elements in the main frame of a page. new AxeBuilder(webDriver).Include("#foo", "#bar").Analyze(); // new new AxeBuilder(webDriver).Include("#foo").Include("#bar").Analyze();
- If you were using it to refer to an element inside a nested frame, replace it with the
Contributing
Refer to the general axe-core-nuget CONTRIBUTING.md.
License
This package is distributed under the terms of the MIT License.
However, note that it has a dependency on the (MPL licensed) Deque.AxeCore.Commons
NuGet package.
Acknowledgements
This package builds on past work from the SeleniumAxeDotnet project (see NOTICE.txt). We thank all of its contributors for their work.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 is compatible. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7.1
- Deque.AxeCore.Commons (>= 4.10.0)
- Newtonsoft.Json (>= 13.0.1)
- Selenium.WebDriver (>= 4.4.0)
-
.NETStandard 2.0
- Deque.AxeCore.Commons (>= 4.10.0)
- Newtonsoft.Json (>= 13.0.1)
- Selenium.WebDriver (>= 4.4.0)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on Deque.AxeCore.Selenium:
Package | Downloads |
---|---|
Lombiq.Tests.UI
Lombiq UI Testing Toolbox for Orchard Core: Web UI testing toolbox mostly for Orchard Core applications. Everything you need to do UI testing with Selenium for an Orchard app is here. See the project website for detailed documentation. |
|
TWP.Selenium.Axe.Html
Tools for creating aXe HTML |
|
GingerCoreNET
Package Description |
|
OpenMAQS.Maqs.Selenium
Selenium extension for Open MAQS' modular automation quick start |
|
AxaFrance.AxeExtended.Selenium
AXA WebEngine Automation Framework is made to run automated Data Driven Tests on local or distance machine |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.10.0 | 10,588 | 9/3/2024 |
4.10.0-alpha.88 | 33 | 10/29/2024 |
4.10.0-alpha.82 | 507 | 8/7/2024 |
4.9.1 | 40,034 | 5/13/2024 |
4.9.1-alpha.81 | 46 | 7/30/2024 |
4.9.1-alpha.80 | 56 | 5/15/2024 |
4.9.1-alpha.78 | 68 | 5/8/2024 |
4.9.0 | 2,642 | 3/29/2024 |
4.9.0-alpha.79 | 57 | 5/9/2024 |
4.9.0-alpha.77 | 57 | 5/7/2024 |
4.9.0-alpha.76 | 48 | 3/29/2024 |
4.9.0-alpha.75 | 63 | 3/26/2024 |
4.8.2 | 160,966 | 2/14/2024 |
4.8.2-alpha.74 | 60 | 3/26/2024 |
4.8.2-alpha.73 | 61 | 2/14/2024 |
4.8.2-alpha.72 | 53 | 2/14/2024 |
4.8.2-alpha.71 | 58 | 2/14/2024 |
4.8.2-alpha.70 | 64 | 2/8/2024 |
4.8.1 | 6,363 | 1/11/2024 |
4.8.1-alpha.69 | 54 | 2/8/2024 |
4.8.1-alpha.68 | 55 | 2/8/2024 |
4.8.1-alpha.65 | 75 | 1/9/2024 |
4.8.0 | 256,731 | 10/2/2023 |
4.8.0-alpha.67 | 62 | 2/7/2024 |
4.8.0-alpha.64 | 65 | 1/9/2024 |
4.8.0-alpha.63 | 71 | 1/9/2024 |
4.8.0-alpha.62 | 72 | 1/9/2024 |
4.7.2 | 10,871 | 8/30/2023 |
4.7.2-alpha.61 | 65 | 12/21/2023 |
4.7.2-alpha.59 | 66 | 11/21/2023 |
4.7.2-alpha.58 | 72 | 11/2/2023 |
4.7.2-alpha.57 | 70 | 11/1/2023 |
4.7.2-alpha.56 | 59 | 10/30/2023 |
4.7.2-alpha.55 | 70 | 10/19/2023 |
4.7.2-alpha.54 | 75 | 10/16/2023 |
4.7.2-alpha.53 | 84 | 10/16/2023 |
4.7.2-alpha.52 | 77 | 10/5/2023 |
4.7.2-alpha.51 | 74 | 10/3/2023 |
4.7.2-alpha.50 | 81 | 10/3/2023 |
4.7.2-alpha.49 | 77 | 9/27/2023 |
4.7.1-alpha.48 | 73 | 9/27/2023 |
4.7.1-alpha.47 | 80 | 9/27/2023 |
4.7.1-alpha.46 | 84 | 9/14/2023 |
4.7.1-alpha.45 | 80 | 9/13/2023 |
4.7.1-alpha.44 | 90 | 9/8/2023 |
4.7.1-alpha.43 | 90 | 8/30/2023 |
4.7.1-alpha.42 | 88 | 8/30/2023 |
4.4.0-alpha.c9651f2c2284967... | 27,880 | 11/10/2022 |
4.4.0-alpha.41 | 88 | 8/30/2023 |
4.4.0-alpha.40 | 90 | 8/30/2023 |