2024-08-17 18:24:31 +00:00
|
|
|
import {expect} from '@playwright/test';
|
|
|
|
import AxeBuilder from '@axe-core/playwright';
|
|
|
|
|
|
|
|
export async function validate_form({page}, scope) {
|
|
|
|
scope ??= 'form';
|
2024-08-19 21:35:37 +00:00
|
|
|
const accessibilityScanResults = await new AxeBuilder({page})
|
|
|
|
.include(scope)
|
|
|
|
// exclude automated tooltips from accessibility scan, remove when fixed
|
|
|
|
.exclude('span[data-tooltip-content')
|
|
|
|
.analyze();
|
2024-08-17 18:24:31 +00:00
|
|
|
expect(accessibilityScanResults.violations).toEqual([]);
|
|
|
|
|
|
|
|
// assert CSS properties that needed to be overriden for forms (ensure they remain active)
|
|
|
|
const boxes = page.getByRole('checkbox').or(page.getByRole('radio'));
|
|
|
|
for (const b of await boxes.all()) {
|
|
|
|
await expect(b).toHaveCSS('margin-left', '0px');
|
|
|
|
await expect(b).toHaveCSS('margin-top', '0px');
|
|
|
|
await expect(b).toHaveCSS('vertical-align', 'baseline');
|
|
|
|
}
|
|
|
|
}
|