testaro 76.0.0 → 76.1.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/UPGRADES.md +12 -0
- package/package.json +2 -1
- package/tests/qualWeb.js +3 -2
package/UPGRADES.md
CHANGED
|
@@ -8708,3 +8708,15 @@ Your SVG example illustrates this perfectly:
|
|
|
8708
8708
|
## Conclusion
|
|
8709
8709
|
|
|
8710
8710
|
Your investigation reveals that **current accessibility testing is fundamentally incomplete**. The solution requires both technical improvements (state management) and philosophical shifts (hygiene-based rules). This significantly raises the complexity bar but also the potential effectiveness of automated accessibility testing.
|
|
8711
|
+
|
|
8712
|
+
# This branch
|
|
8713
|
+
|
|
8714
|
+
you'll get notified when `#334` merges and when the subsequent changesets "Version Packages" PR is opened/merged in `qualweb/qualweb`.
|
|
8715
|
+
|
|
8716
|
+
## Plan recap
|
|
8717
|
+
|
|
8718
|
+
- **No action needed now.** Wait for notifications on both PRs.
|
|
8719
|
+
- **Once the "Version Packages" PR merges** (bumping `@qualweb/playwright-driver`): check `npmjs.com/package/@qualweb/playwright-driver` for the new patch version, then bump it in `@/Users/pool/Documents/Topics/repos/a11yTesting/testaro/package.json`.
|
|
8720
|
+
- **Re-test**: run a job with a `qualWeb` act and confirm the `No DOM` error is gone before merging your `qwpw` branch.
|
|
8721
|
+
|
|
8722
|
+
I'll be ready to help with the dependency bump and verification when that release lands.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "testaro",
|
|
3
|
-
"version": "76.
|
|
3
|
+
"version": "76.1.0",
|
|
4
4
|
"description": "Run 1300 web accessibility tests from 10 tools and get a standardized report",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@qualweb/core": "*",
|
|
34
34
|
"@qualweb/act-rules": "*",
|
|
35
|
+
"@qualweb/playwright-driver": "*",
|
|
35
36
|
"@qualweb/wcag-techniques": "*",
|
|
36
37
|
"@qualweb/best-practices": "*",
|
|
37
38
|
"@siteimprove/alfa-act": "*",
|
package/tests/qualWeb.js
CHANGED
|
@@ -19,14 +19,15 @@ const {QualWeb} = require('@qualweb/core');
|
|
|
19
19
|
const {ACTRules} = require('@qualweb/act-rules');
|
|
20
20
|
const {WCAGTechniques} = require('@qualweb/wcag-techniques');
|
|
21
21
|
const {BestPractices} = require('@qualweb/best-practices');
|
|
22
|
+
const {PlaywrightDriver} = require('@qualweb/playwright-driver');
|
|
22
23
|
const {getAttributeXPath, getXPathCatalogIndex} = require('../procs/xPath');
|
|
23
24
|
|
|
24
25
|
// CONSTANTS
|
|
25
26
|
|
|
26
|
-
const qualWeb = new QualWeb({
|
|
27
|
+
const qualWeb = new QualWeb(undefined, new PlaywrightDriver({
|
|
27
28
|
adBlock: true,
|
|
28
29
|
stealth: true
|
|
29
|
-
});
|
|
30
|
+
}));
|
|
30
31
|
const actRulesModule = new ACTRules({});
|
|
31
32
|
const wcagModule = new WCAGTechniques({});
|
|
32
33
|
const bpModule = new BestPractices({});
|