
| Current Path : /var/www/html/rocksensor/web/core/modules/navigation/tests/src/Nightwatch/Tests/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/modules/navigation/tests/src/Nightwatch/Tests/a11yTest.js |
const navigationTest = {
'@tags': ['core', 'a11y', 'a11y:admin', 'navigation'],
before(browser) {
browser
.drupalInstall({
installProfile: 'nightwatch_a11y_testing',
})
.drupalInstallModule('navigation', true)
.setWindowSize(1220, 800);
},
after(browser) {
browser.drupalUninstall();
},
};
const testCases = [{ name: 'Claro page', path: '/user/1/edit' }];
testCases.forEach((testCase) => {
navigationTest[`Accessibility - Navigation Module - ${testCase.name}`] = (
browser,
) => {
browser.drupalLoginAsAdmin(() => {
browser
.drupalRelativeURL(testCase.path)
.axeInject()
.axeRun('body', testCase.options || {});
});
};
});
module.exports = navigationTest;