UNPKG

@nice-digital/wdio-cucumber-steps

Version:

Shared step definitions for Cucumber JS BDD tests in WebdriverIO

14 lines 436 B
import { Result, run } from "axe-core"; declare global { interface Window { axe: { run: typeof run; }; } } /** * Check if the page has accessibility issues. */ export declare function checkForAccessibilityIssues(level: "A" | "AA"): Promise<void>; export declare const getErrorMessage: (violations: Result[]) => Promise<string>; //# sourceMappingURL=checkForAccessibilityIssues.d.ts.map