Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
axe-testcafe
Advanced tools
The TestCafe module that allows you to use the aXe accessibility engine in TestCafe tests
The TestCafe module that allows you to use the aXe accessibility engine in TestCafe tests.
npm install axe-core axe-testcafe --save-dev
You can write a TestCafe test with automated accessibility checks like this.
import { axeCheck, createReport } from 'axe-testcafe';
fixture `TestCafe tests with Axe`
.page `http://example.com`;
test('Automated accessibility testing', async t => {
const { error, violations } = await axeCheck(t);
await t.expect(violations.length === 0).ok(createReport(violations));
});
If any accessibility issues are found, you will see a detailed report generated by the createReport
function.
The axe-testcafe
module allows you to define the context
and options
axe.run parameters in a TestCafe test.
test('Automated accessibility testing', async () => {
const axeContext = { exclude: [['select']] };
const axeOptions = { rules: { 'html-has-lang': { enabled: false } } };
const { error, violations } = await axeCheck(t, axeContext, axeOptions);
await t.expect(violations.length === 0).ok(createReport(violations));
});
FAQs
The TestCafe module that allows you to use the aXe accessibility engine in TestCafe tests
The npm package axe-testcafe receives a total of 4,533 weekly downloads. As such, axe-testcafe popularity was classified as popular.
We found that axe-testcafe demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.