@axe-core/puppeteer 4.5.3-alpha.357 → 4.5.3-alpha.359
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/README.md +8 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -225,3 +225,11 @@ const axe = new AxePuppeteer(page).setLegacyMode();
|
|
|
225
225
|
const result = await axe.analyze();
|
|
226
226
|
axe.setLegacyMode(false); // Disables legacy mode
|
|
227
227
|
```
|
|
228
|
+
|
|
229
|
+
## Caveat
|
|
230
|
+
|
|
231
|
+
Due to axe-core needing to be injected into the page and executed we are unable to do the following:
|
|
232
|
+
|
|
233
|
+
```js
|
|
234
|
+
await page.setJavaScriptEnabled(false);
|
|
235
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axe-core/puppeteer",
|
|
3
|
-
"version": "4.5.3-alpha.
|
|
3
|
+
"version": "4.5.3-alpha.359+397bcb0",
|
|
4
4
|
"description": "Provides a chainable axe API for Puppeteer and automatically injects into all frames",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"functions": 85,
|
|
78
78
|
"lines": 85
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "397bcb02e011169032f0a38a748385eb0d3af137"
|
|
81
81
|
}
|