Automation Tests with Accessibility Tool using Cypress v10
This guide takes you step-by-step through the process of using LambdaTest's Accessibility Tool with Cypress v10 and above to run automated tests for your website.
NOTE: This documentation is applicable for Cypress v10 and later versions.
Prerequisites
- Your LambdaTest Username and Access key
- Setup your local machine as per your testing framework.
Step-by-Step Guide to Trigger Your Test
Step 1: Setup Your Test Suite
You can use your own project to configure and test it. For demo purposes, we are using the sample repository.
Download or Clone the code sample from the LambdaTest GitHub repository to run your tests.
View on GitHubConfigure the desired capabilities based on your test requirements. For example:
loading...
Step 2: Establish User Authentication
Now, you need to export your environment variables LT_USERNAME and LT_ACCESS_KEY that are available in the LambdaTest Profile page.
Run the below mentioned commands in your terminal to setup the CLI and the environment variables.
- Linux / MacOS
- Windows
export LT_USERNAME="undefined"
export LT_ACCESS_KEY="undefined"
set LT_USERNAME="undefined"
set LT_ACCESS_KEY="undefined"
Step 3: Update the Necessary Capabilities and Configurations in your project
1. Install the Cypress CLI
- If you are passing npm dependencies through package.json, then add the below mentioned line there:
loading...
- If you are using lambdatest-config.json to pass the dependency, then pass the given line there:
"run_settings": {
//...
"npm_dependencies": {
"cypress": "10.0.0",
"lambdatest-cypress-cli": "^3.0.30"
},
//...
}
- if you are not passing npm dependency in lambdatest-config.json you can run
npm i lambdatest-cypress-cli
2. In the e2e.js
file
Add this import statement in your e2e.js
file to import the acceessibility scanner dependency
import 'lambdatest-cypress-cli/accessibility/scanner'
3. In the cypress.config.js
file
Add this template in your config file.
loading...
4. Add the capabilities in the lambdatest-config.json
file
To enable the accessibility testing within your automated test suite, set the accessibility: true
in your configuration file. You can also define other settings capabilities as described below.
"accessibility" : true, // Enable accessibility testing
"accessibility.wcagVersion": "wcag21a", // Specify WCAG version (e.g., WCAG 2.1 Level A)
"accessibility.bestPractice": false, // Exclude best practice issues from results
"accessibility.needsReview": true // Include issues that need review
Step 4: Execute and Monitor your Test
Now execute your tests and visit the Automation Dashboard. Click on the Accessibility tab and check the report generated.
lambdatest-cypress-cli run