
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
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 8,731 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.