Selenium C# SDK
The Evinced Selenium C# SDK integrates with new or existing Selenium WebDriver tests to automatically detect accessibility issues. By adding a few lines of code to your Selenium WebDriver project, you can begin analyzing all the web pages and DOM changes to provide a dynamic view of how your site can become more accessible. As a result of the test, a rich and comprehensive report is generated to easily track issues to resolution.
Interested in seeing this in action? Contact us to get started!
Prerequisites
- Selenium.WebDriver version 4.10.0 or higher
- .Net Core version 7 or higher
- ChromeDriver
Get Started
Installation
Install Selenium C# SDK from a locally provided file
- Download the Selenium.CS.SDK.version.nupkg file.
- Add the it to the project
1# To install the SDK.2dotnet add package Selenium.CS.SDK -v <version> -s <path-to-folder-with-nupkg-file>34# To restore all needed .NET dependencies.dotnet add reference <path-to-dll>Selenium.CS.SDK.dll5dotnet restore
Your First Test
SDK Initialization
To work with Selenium C# SDK you need to have authentication token. Please refer to licensing section for details. The only command you need to add is to wrap the existing WebDriver object
1using Evinced.SDK;23IEvincedDriver driver = EvincedDriverFactory.Create(new ChromeDriver());
Add Evinced accessibility checks (Single Run Mode)
This is a simple example of how to add an Evinced accessibility scan to a test. Please note the inline comments that give detail on each test step.
1[Test]2public void EvAnalyzeTest() {3 EvincedSDK.SetOfflineCredentials(Environment.GetEnvironmentVariable("AUTH_SERVICE_ID"), Environment.GetEnvironmentVariable("AUTH_TOKEN"));45 // Initialize EvincedWebDriver which wraps a ChromeDriver instance6 IEvincedDriver driver = EvincedDriverFactory.Create(new ChromeDriver());78 try {9 // Navigate to the site under test10 driver.Navigate().GoToUrl("https://www.google.com");1112 // Run analysis and get the accessibility report13 IReport result = driver.EvAnalyze();1415 // Assert that there are no accessibility issues16 Assert.That(result.GetIssues(), Has.Count.EqualTo(0));17 } finally {18 driver.Quit();19 }20}
Add Evinced accessibility checks (Continuous Mode)
This is an example of how to add a continuous Evinced accessibility scan to a test. Using the EvStart
and EvStop
methods, the Evinced engine will continually scan in the background capturing all DOM changes and page navigations as the test is executed. This will capture all accessibility issues as clicking on drop-downs or similar interactions reveals more of the page. The advantage of continuous mode is that no interaction with the actual test code is needed.
1[Test]2public void StartStopSimpleTest() {3 EvincedSDK.SetOfflineCredentials(Environment.GetEnvironmentVariable("AUTH_SERVICE_ID"), Environment.GetEnvironmentVariable("AUTH_TOKEN"));45 // Initialize EvincedWebDriver which wraps a ChromeDriver instance6 IEvincedDriver driver = EvincedDriverFactory.Create(new ChromeDriver());78 try {9 // Navigate to the site under test10 driver.Navigate().GoToUrl("https://www.google.com");11 // Start the Evinced engine scanning for accessibility issues12 driver.EvStart();1314 // More test code to interact with the page1516 // Stop the Evinced engine17 IReport report = driver.EvStop();18 // Output the Evinced report in either JSON or HTML format19 EvincedSDK.EvSaveFile("test-results", report, FileFormat.JSON);20 EvincedSDK.EvSaveFile("test-results", report, FileFormat.HTML, driver);2122 // Reports will be stored in the current directory23 Console.WriteLine(Directory.GetCurrentDirectory());2425 } finally {26 driver.Quit();27 }28}
API
global initialization
Initializes the Evinced object within the project.
Example
[Work in progress placeholder] 🔴 TODO 🔴
Please refer to configuration to see examples of using init with options.
EvAnalyze(options)
Scans the current page and returns a list of accessibility issues.
Note: This method is not supported if EvStart
is already running.
Please refer to configuration to see examples of using init with options.
Example
[Work in progress placeholder] 🔴 TODO 🔴
Return value
[Work in progress placeholder] 🔴 TODO 🔴
A Report object is returned containing accessibility issues. This is the recommended method for static page analysis.
For more information regarding reports as well as the Report
object itself, please refer to our detailed Web Reports page.
EvStart(options)
Continually watches for DOM mutations and page navigation and records all accessibility issues until the EvStop
method is called. This method is recommended for dynamic page flows.
Example
[Work in progress placeholder] 🔴 TODO 🔴
Return value
[Work in progress placeholder] 🔴 TODO 🔴
EvStop
Stops the process of issue gathering started by EvStart
command.
Example
[Work in progress placeholder] 🔴 TODO 🔴
Return value
[Work in progress placeholder] 🔴 TODO 🔴
Returns an object containing recorded accessibility issues from the point in time at which the EvStart
method
was instantiated. For more information regarding reports as well as the returned object itself, please refer to detailed
Web Reports page.
EvSaveFile(destination, format, issues)
Saves list of the issues in a file, with the specified format and location. For example, format could be ‘json
’ or 'html
. Please find detailed information on Web Reports page.
Example
[Work in progress placeholder] 🔴 TODO 🔴
Return value
[Work in progress placeholder] 🔴 TODO 🔴
Aggregated Report
The aggregated report feature allows you to have a general aggregated report for the
whole run (not only for one test or suite).
This report will contain all the issues found by the tests where EvStart
and EvStop
commands were called.
It is still possible to use the EvSaveFile
command in any place of your code along with this Aggregated Report feature.
Example
[Work in progress placeholder] 🔴 TODO 🔴
Licensing
To work with Selenium C# SDK you need to have Authentication token. There are to methods to provide the token: offline mode and online mode. The difference is if you use online mode the request to obtain the token will be sent to Evinced Licencing Server. You need to provide Service ID and Secret API key in such a case. They are available via the Evinced Product Hub.
Offline mode assumes that you already have token and can provide it directly. If an offline token is required please reach out to your account team or support@evinced.com.
We encourage to use environment variables to store credentials and read them in code
1# Offline mode2export AUTH_SERVICE_ID=<serviceId>3export AUTH_TOKEN=<token>45# Online mode6export AUTH_SERVICE_ID=<serviceId>7export AUTH_SECRET=<secret>
Example
1using Evinced.SDK;23// Offline mode4EvincedSDK.SetOfflineCredentials(Environment.GetEnvironmentVariable("AUTH_SERVICE_ID"), Environment.GetEnvironmentVariable("AUTH_TOKEN"));56// Online mode (not yet implemented)7EvincedSDK.SetCredentials(Environment.GetEnvironmentVariable("AUTH_SERVICE_ID"), Environment.GetEnvironmentVariable("AUTH_SECRET"));
Configuration
The same configuration object can be used in global initialization, EvStart
and EvAnalyze
methods but
with a bit different consequences. By providing some options in global initialization method you define a global
configuration for all calls of EvStart
or EvAnalyze
methods. Please note that global configuration is not
intended to be altered from tests due to it will affect all the rest tests as well as tests running in parallel threads.
To alter configuration in specific tests you can provide config on the method's level, for instance with EvStart
it
defines local configuration for this particular session until EvStop
is called.
If provided in both levels, the command's level config will override the global one.
Engines configuration
Evinced uses two separate engines when scanning for accessibility issues, one is the aXe engine and the other is the Evinced engine. By default, Evinced disables the aXe Needs Review and Best Practices issues based on customer request and due to the fact they are mostly false positives. Please note this setting when comparing issue counts directly. See an example of how to enable Needs Review and Best practices issues in our toggles section.
Configuration object type
[Work in progress placeholder] 🔴 TODO 🔴
Root Selector
Instructs engine to return issues which belong to or which are nested to element with the specified selector. By default the issues for all elements from document root will be returned.
null
by default.
Example
[Work in progress placeholder] 🔴 TODO 🔴
AXE Configuration
Evinced leverages Axe open-source accessibility toolkit as part of its own accessibility detection engine. The Evinced engine is able to pinpoint far more issues than Axe alone.
For the full Axe config options, see Axe Core API.
Example
[Work in progress placeholder] 🔴 TODO 🔴
Errors Strict Mode
When set to true
it switches SDK in mode when Evinced SDK errors are thrown as runtime errors and stops current test
execution. Otherwise errors are printed into console except critical ones.
false
by default
Example
[Work in progress placeholder] 🔴 TODO 🔴
Engine Logging
Switches logging on for engine. Log messages from the engine will be printed to console.
Levels are: debug
, info
, warn
, error
null
by default.
error
is a default level on engine side.
[Work in progress placeholder] 🔴 TODO 🔴
Reports Screenshots
The Screenshots feature allows to include screenshots to the Evinced reports. When the feature is enabled, Evinced will take screenshots of the page, highlight an element with a specific accessibility issue, and include them to the report.
false
by default.
Note: The Screenshots feature may affect the test run performance.
Enabling the Screenshots feature
[Work in progress placeholder] 🔴 TODO 🔴
Toggles
Toggles are feature flags which controls SDK and Engine behavior. With toggles we introduce experimental features or manage the way how accessibility issues are gathered. The list of toggles is not specified so we suggest not to rely on specific toggle name or value and use them in invetigation puprposes only.
Example enabling aXe Best Practices and Needs Review Issues
[Work in progress placeholder] 🔴 TODO 🔴
Skip Validations
Skips specific validations for the given URL pattern and the selector.
SkipValidation[]
by default.
Example
[Work in progress placeholder] 🔴 TODO 🔴
How to identify ID for the specific issue type is described in tutorial section.
Knowledge Base Link overrides
This custom parameter helps to customize knowledge base links in the reports. Those links are displayed in the reports as follows:
The knowledge base link can be overridden for every issue type ID.
Example
[Work in progress placeholder] 🔴 TODO 🔴
Where WRONG_SEMANTIC_ROLE
is ID of the type of the specific issue. In this example, the corresponding issue type for
this ID is Interactable Role
. How to identify ID for the specific issue type is described in
tutorial section.
After passing the type ID and a custom knowledge base link we are set to see it in the reports.
Shadow DOM support
Example
[Work in progress placeholder] 🔴 TODO 🔴
When set to true
, the accessibility tests run analysis on iframes that exist inside the page. Default is false
.
[Work in progress placeholder] 🔴 TODO 🔴
Global Switch
Global Switch allows to disable or enable Evinced functionality. It could be needed, for example, while working on functional tests in your local environment or for running some CI jobs that are not intended to gather information regarding accessibility issues.
When switched off
EvStart
andEvSaveFile
will be bypassed.EvStop
andEvAnalyze
will return an empty report.evValid()
will never fail.
true
by default.
Important! Global Switch environment variable overrides the global configuration option.
Switch on/off Evinced functionality in config
[Work in progress placeholder] 🔴 TODO 🔴
Switching off Evinced functionality with environment variable
1export EV_SWITCH_ON=false
Tutorials
You can find fully functional example projects on our GitHub
Support
Please feel free to reach out to support@evinced.com with any questions.
FAQ
- Can I configure which validations to run?
Yes, see the configuration section for details on how to configure Axe validations to your needs.
- Can I run tests with Evinced using cloud-based services like Sauce Labs, Perfecto, or BrowserStack?
Yes, we have tested the Evinced SDK on many of these types of cloud-based services and expect no issues.