- Your LambdaTest Username and Access key
- Setup your local machine as per your testing framework.
You can use your own project to configure and test it. For demo purposes, we are using the sample repository.
git clone <URL_OF_THE_REPO>
If you are using your project, make sure you update the Hub endpoint in your tests file. By setting up the Hub endpoint, you establish the communication channel between your tests and the browser nodes, enabling effective test distribution and execution.
Configure the desired capabilities based on your test requirements. For example:
{
"lambdatest_auth": {
"username": "<Your LambdaTest username>",
"access_key": "<Your LambdaTest access key>"
},
"browsers": [
{
"browser": "Chrome",
"platform": "Windows 10",
"versions": [
"latest-1"
]
},
{
"browser": "Firefox",
"platform": "Windows 10",
"versions": [
"latest-1"
]
}
],
"run_settings": {
"cypress_config_file": "cypress.json",
"reporter_config_file": "base_reporter_config.json",
"build_name": "build-name",
"parallels": 1,
"specs": "./*.spec.js",
"ignore_files": "",
"network": false,
"headless": false,
"npm_dependencies": {
"cypress": "9.0.0"
}
},
"tunnel_settings": {
"tunnel": false,
"tunnel_name": null
}
}
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.
For Linux/macOS
export LT_USERNAME=YOUR_LAMBDATEST_USERNAME
export LT_ACCESS_KEY=YOUR_LAMBDATEST_ACCESS_KEY
For Windows
set LT_USERNAME=YOUR_LAMBDATEST_USERNAME
set LT_ACCESS_KEY=YOUR_LAMBDATEST_ACCESS_KEY
- If you are passing npm dependencies through package.json, then add the below mentioned line there:
"lambdatest-cypress-cli"
- If you are using lambdatest-config.json to pass the dependency, then pass the given line there:
"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
Add this import statement in your index.js
file to import the acceessibility scanner dependency
import 'lambdatest-cypress-cli/accessibility/scanner'
Add this template in your index.js
file.
const lambdatestAccessibility = require('lambdatest-cypress-cli/accessibility/plugin');
module.exports = (on, config) => {
// `on` is used to hook into various events Cypress emits
// `config` is the resolved Cypress config
lambdatestAccessibility(on, config);
return config;
}
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.
capabilities: [{
"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
}]
Now execute your tests and visit the Automation Dashboard. Click on the Accessibility tab and check the report generated.