@axe-core/playwright 4.6.2-alpha.379 → 4.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +11 -3
- package/dist/index.js +361 -394
- package/dist/index.mjs +338 -0
- package/package.json +15 -5
- package/dist/AxePartialRunner.d.ts +0 -22
- package/dist/AxePartialRunner.js +0 -96
- package/dist/AxePartialRunner.js.map +0 -1
- package/dist/browser.d.ts +0 -14
- package/dist/browser.js +0 -30
- package/dist/browser.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/types.d.ts +0 -28
- package/dist/types.js +0 -3
- package/dist/types.js.map +0 -1
- package/dist/utils.d.ts +0 -15
- package/dist/utils.js +0 -45
- package/dist/utils.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
1
|
+
import { SerialFrameSelector, RunOptions, AxeResults } from 'axe-core';
|
|
2
|
+
import { Page } from 'playwright-core';
|
|
3
|
+
|
|
4
|
+
interface AxePlaywrightParams {
|
|
5
|
+
page: Page;
|
|
6
|
+
axeSource?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
declare class AxeBuilder {
|
|
4
10
|
private page;
|
|
5
11
|
private includes;
|
|
6
12
|
private excludes;
|
|
@@ -91,3 +97,5 @@ export default class AxeBuilder {
|
|
|
91
97
|
private finishRun;
|
|
92
98
|
private axeConfigure;
|
|
93
99
|
}
|
|
100
|
+
|
|
101
|
+
export { AxeBuilder as default };
|