testaro 16.4.0 → 17.0.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/README.md +2 -2
- package/actSpecs.js +1 -0
- package/package.json +1 -1
- package/testaro/focOp.js +0 -4
- package/tests/testaro.js +6 -1
- package/validation/tests/jobs/allCaps.json +2 -0
- package/validation/tests/jobs/allHidden.json +8 -0
- package/validation/tests/jobs/allSlanted.json +2 -0
- package/validation/tests/jobs/attVal.json +4 -0
- package/validation/tests/jobs/autocomplete.json +4 -0
- package/validation/tests/jobs/bulk.json +2 -0
- package/validation/tests/jobs/buttonMenu.json +3 -0
- package/validation/tests/jobs/distortion.json +2 -0
- package/validation/tests/jobs/docType.json +2 -0
- package/validation/tests/jobs/dupAtt.json +3 -0
- package/validation/tests/jobs/elements.json +9 -0
- package/validation/tests/jobs/embAc.json +3 -0
- package/validation/tests/jobs/filter.json +3 -0
- package/validation/tests/jobs/focAll.json +3 -0
- package/validation/tests/jobs/focInd.json +3 -0
- package/validation/tests/jobs/focOp.json +3 -0
- package/validation/tests/jobs/focVis.json +1 -0
- package/validation/tests/jobs/hovInd.json +1 -0
- package/validation/tests/jobs/hover.json +4 -0
- package/validation/tests/jobs/labClash.json +2 -0
- package/validation/tests/jobs/lineHeight.json +2 -0
- package/validation/tests/jobs/linkAmb.json +2 -0
- package/validation/tests/jobs/linkExt.json +2 -0
- package/validation/tests/jobs/linkTitle.json +2 -0
- package/validation/tests/jobs/linkTo.json +2 -0
- package/validation/tests/jobs/linkUl.json +3 -0
- package/validation/tests/jobs/miniText.json +2 -0
- package/validation/tests/jobs/motion.json +2 -0
- package/validation/tests/jobs/nonTable.json +2 -0
- package/validation/tests/jobs/pseudoP.json +2 -0
- package/validation/tests/jobs/radioSet.json +3 -0
- package/validation/tests/jobs/role.json +2 -0
- package/validation/tests/jobs/styleDiff.json +2 -0
- package/validation/tests/jobs/tabNav.json +3 -0
- package/validation/tests/jobs/targetSize.json +2 -0
- package/validation/tests/jobs/textNodes.json +5 -0
- package/validation/tests/jobs/title.json +2 -0
- package/validation/tests/jobs/titledEl.json +2 -0
- package/validation/tests/jobs/zIndex.json +3 -0
package/README.md
CHANGED
|
@@ -603,10 +603,10 @@ If you do not specify rules when using the `testaro` tool, Testaro will test for
|
|
|
603
603
|
|
|
604
604
|
The `rules` property for `testaro` is an array whose first item is either `'y'` or `'n'` and whose remaining items are rule IDs. If `'y'`, then only the specified rules’ tests are performed. If `'n'`, then all the evaluative tests are performed, except for the specified rules.
|
|
605
605
|
|
|
606
|
-
It has been found that the `focOp` and `motion` tests of the `testaro` tool work properly only when the `webkit` browser type is in use. If you want to use `testaro` with different browser types for different tests, you can include 2 or 3 `testaro` test acts in your job, specifying different browser types and different rules.
|
|
607
|
-
|
|
608
606
|
The `testaro` tool (like the `ibm` tool) has a `withItems` property. If you set it to `false`, the `standardResult` object of `testaro` will contain an `instances` property with summaries that identify issues and instance counts. If you set it to `true`, some of the instances will be itemized.
|
|
609
607
|
|
|
608
|
+
Unlike any other tool, the `testaro` tools requires a `stopOnFail` property, which specifies whether a failure to conform to any rule (i.e. any value of `totals` other than `[0, 0, 0, 0]`) should terminate the execution of tests for the remaining rules.
|
|
609
|
+
|
|
610
610
|
###### WAVE
|
|
611
611
|
|
|
612
612
|
If a `wave` test act is included in the job, an environment variable named `WAVE_KEY` must exist, with your WAVE API key as its value. You can get it from [WebAIM](https://wave.webaim.org/api/).
|
package/actSpecs.js
CHANGED
|
@@ -184,6 +184,7 @@ exports.actSpecs = {
|
|
|
184
184
|
'Perform Testaro tests',
|
|
185
185
|
{
|
|
186
186
|
withItems: [true, 'boolean', '', 'itemize'],
|
|
187
|
+
stopOnFail: [true, 'boolean', '', 'whether testing is to stop after first failure'],
|
|
187
188
|
args: [false, 'object', 'areArrays', 'extra args (object; property names are rule IDs and values are arrays of additional argument values ({autocomplete: [["first name", "forename", "given name"], ["last name", "surname", "family name"], ["email"]], buttonMenu: [], focInd: [false, 250], hover: [20]}) by default'],
|
|
188
189
|
}
|
|
189
190
|
],
|
package/package.json
CHANGED
package/testaro/focOp.js
CHANGED
|
@@ -2,10 +2,6 @@
|
|
|
2
2
|
focOp
|
|
3
3
|
Related to Tenon rule 190.
|
|
4
4
|
|
|
5
|
-
WARNING: The chromium and firefox browsers in Playwright fail to accept are stricter on this test than the
|
|
6
|
-
chromium browser is.
|
|
7
|
-
misclassifying the tabIndex values of elements. Launch the webkit browser to run this test.
|
|
8
|
-
|
|
9
5
|
This test reports discrepancies between Tab-focusability and operability. The standard
|
|
10
6
|
practice is to make focusable elements operable and vice versa. If focusable elements are not
|
|
11
7
|
operable, users are likely to be surprised that nothing happens when they try to operate such
|
package/tests/testaro.js
CHANGED
|
@@ -54,7 +54,7 @@ const etcRules = {
|
|
|
54
54
|
|
|
55
55
|
// Conducts and reports a Testaro test.
|
|
56
56
|
exports.reporter = async (page, options) => {
|
|
57
|
-
const {withItems, args} = options;
|
|
57
|
+
const {withItems, stopOnFail, args} = options;
|
|
58
58
|
const argRules = args ? Object.keys(args) : null;
|
|
59
59
|
const rules = options.rules || ['y', ... Object.keys(evalRules)];
|
|
60
60
|
// Initialize the data.
|
|
@@ -90,6 +90,11 @@ exports.reporter = async (page, options) => {
|
|
|
90
90
|
Object.keys(report).forEach(key => {
|
|
91
91
|
data.rules[rule][key] = report[key];
|
|
92
92
|
});
|
|
93
|
+
// If testing is to stop after a failure and the page failed the test:
|
|
94
|
+
if (stopOnFail && report.totals.some(total => total)) {
|
|
95
|
+
// Stop testing.
|
|
96
|
+
break;
|
|
97
|
+
}
|
|
93
98
|
}
|
|
94
99
|
}
|
|
95
100
|
// Otherwise, i.e. if the rule specification is invalid:
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
"type": "test",
|
|
90
91
|
"which": "testaro",
|
|
91
92
|
"withItems": false,
|
|
93
|
+
"stopOnFail": true,
|
|
92
94
|
"expect": [
|
|
93
95
|
[
|
|
94
96
|
"standardResult.totals.0",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "entirely or mainly hidden page",
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -60,6 +61,7 @@
|
|
|
60
61
|
"type": "test",
|
|
61
62
|
"which": "testaro",
|
|
62
63
|
"what": "entirely or mainly hidden page",
|
|
64
|
+
"stopOnFail": true,
|
|
63
65
|
"expect": [
|
|
64
66
|
[
|
|
65
67
|
"standardResult.totals.1",
|
|
@@ -97,6 +99,7 @@
|
|
|
97
99
|
"type": "test",
|
|
98
100
|
"which": "testaro",
|
|
99
101
|
"what": "entirely or mainly hidden page",
|
|
102
|
+
"stopOnFail": true,
|
|
100
103
|
"expect": [
|
|
101
104
|
[
|
|
102
105
|
"standardResult.totals.0",
|
|
@@ -134,6 +137,7 @@
|
|
|
134
137
|
"type": "test",
|
|
135
138
|
"which": "testaro",
|
|
136
139
|
"what": "entirely or mainly hidden page",
|
|
140
|
+
"stopOnFail": true,
|
|
137
141
|
"expect": [
|
|
138
142
|
[
|
|
139
143
|
"standardResult.totals.0",
|
|
@@ -176,6 +180,7 @@
|
|
|
176
180
|
"type": "test",
|
|
177
181
|
"which": "testaro",
|
|
178
182
|
"what": "entirely or mainly hidden page",
|
|
183
|
+
"stopOnFail": true,
|
|
179
184
|
"expect": [
|
|
180
185
|
[
|
|
181
186
|
"standardResult.totals.1",
|
|
@@ -213,6 +218,7 @@
|
|
|
213
218
|
"type": "test",
|
|
214
219
|
"which": "testaro",
|
|
215
220
|
"what": "entirely or mainly hidden page",
|
|
221
|
+
"stopOnFail": true,
|
|
216
222
|
"expect": [
|
|
217
223
|
[
|
|
218
224
|
"standardResult.totals.2",
|
|
@@ -245,6 +251,7 @@
|
|
|
245
251
|
"type": "test",
|
|
246
252
|
"which": "testaro",
|
|
247
253
|
"what": "entirely or mainly hidden page",
|
|
254
|
+
"stopOnFail": true,
|
|
248
255
|
"expect": [
|
|
249
256
|
[
|
|
250
257
|
"standardResult.totals.3",
|
|
@@ -277,6 +284,7 @@
|
|
|
277
284
|
"type": "test",
|
|
278
285
|
"which": "testaro",
|
|
279
286
|
"what": "entirely or mainly hidden page",
|
|
287
|
+
"stopOnFail": true,
|
|
280
288
|
"expect": [
|
|
281
289
|
[
|
|
282
290
|
"standardResult.totals.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -94,6 +95,7 @@
|
|
|
94
95
|
"type": "test",
|
|
95
96
|
"which": "testaro",
|
|
96
97
|
"withItems": false,
|
|
98
|
+
"stopOnFail": true,
|
|
97
99
|
"expect": [
|
|
98
100
|
[
|
|
99
101
|
"standardResult.totals.0",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "attribute values",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -44,6 +45,7 @@
|
|
|
44
45
|
"which": "testaro",
|
|
45
46
|
"what": "attribute values",
|
|
46
47
|
"withItems": false,
|
|
48
|
+
"stopOnFail": true,
|
|
47
49
|
"expect": [
|
|
48
50
|
[
|
|
49
51
|
"standardResult.totals.2",
|
|
@@ -73,6 +75,7 @@
|
|
|
73
75
|
"type": "test",
|
|
74
76
|
"which": "testaro",
|
|
75
77
|
"withItems": true,
|
|
78
|
+
"stopOnFail": true,
|
|
76
79
|
"expect": [
|
|
77
80
|
[
|
|
78
81
|
"standardResult.totals.2",
|
|
@@ -148,6 +151,7 @@
|
|
|
148
151
|
"which": "testaro",
|
|
149
152
|
"what": "attribute values",
|
|
150
153
|
"withItems": false,
|
|
154
|
+
"stopOnFail": true,
|
|
151
155
|
"expect": [
|
|
152
156
|
[
|
|
153
157
|
"standardResult.totals.3",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.2",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"type": "test",
|
|
40
41
|
"which": "testaro",
|
|
41
42
|
"withItems": false,
|
|
43
|
+
"stopOnFail": true,
|
|
42
44
|
"expect": [
|
|
43
45
|
[
|
|
44
46
|
"standardResult.totals.2",
|
|
@@ -65,6 +67,7 @@
|
|
|
65
67
|
"type": "test",
|
|
66
68
|
"which": "testaro",
|
|
67
69
|
"withItems": true,
|
|
70
|
+
"stopOnFail": true,
|
|
68
71
|
"expect": [
|
|
69
72
|
[
|
|
70
73
|
"standardResult.totals.2",
|
|
@@ -117,6 +120,7 @@
|
|
|
117
120
|
"which": "testaro",
|
|
118
121
|
"what": "autocomplete attributes for name and email",
|
|
119
122
|
"withItems": false,
|
|
123
|
+
"stopOnFail": true,
|
|
120
124
|
"expect": [
|
|
121
125
|
[
|
|
122
126
|
"standardResult.totals.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "visible element count",
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -45,6 +46,7 @@
|
|
|
45
46
|
"type": "test",
|
|
46
47
|
"which": "testaro",
|
|
47
48
|
"what": "visible element count",
|
|
49
|
+
"stopOnFail": true,
|
|
48
50
|
"expect": [
|
|
49
51
|
[
|
|
50
52
|
"standardResult.totals.0",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.1",
|
|
@@ -52,6 +53,7 @@
|
|
|
52
53
|
"args": {
|
|
53
54
|
"buttonMenu": [["End", "+", "-", "-", "Home"]]
|
|
54
55
|
},
|
|
56
|
+
"stopOnFail": true,
|
|
55
57
|
"expect": [
|
|
56
58
|
[
|
|
57
59
|
"standardResult.totals.2",
|
|
@@ -156,6 +158,7 @@
|
|
|
156
158
|
"args":{
|
|
157
159
|
"buttonMenu": [["End", "+", "-", "-", "Home"]]
|
|
158
160
|
},
|
|
161
|
+
"stopOnFail": true,
|
|
159
162
|
"expect": [
|
|
160
163
|
[
|
|
161
164
|
"standardResult.totals.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.1",
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"type": "test",
|
|
85
86
|
"which": "testaro",
|
|
86
87
|
"withItems": false,
|
|
88
|
+
"stopOnFail": true,
|
|
87
89
|
"expect": [
|
|
88
90
|
[
|
|
89
91
|
"standardResult.totals.1",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "doctype",
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.3",
|
|
@@ -45,6 +46,7 @@
|
|
|
45
46
|
"type": "test",
|
|
46
47
|
"which": "testaro",
|
|
47
48
|
"what": "doctype",
|
|
49
|
+
"stopOnFail": true,
|
|
48
50
|
"expect": [
|
|
49
51
|
[
|
|
50
52
|
"standardResult.totals.3",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "elements with duplicate attributes",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"which": "testaro",
|
|
47
48
|
"what": "elements with duplicate attributes",
|
|
48
49
|
"withItems": true,
|
|
50
|
+
"stopOnFail": true,
|
|
49
51
|
"expect": [
|
|
50
52
|
[
|
|
51
53
|
"standardResult.totals.2",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"which": "testaro",
|
|
109
111
|
"what": "elements with duplicate attributes",
|
|
110
112
|
"withItems": false,
|
|
113
|
+
"stopOnFail": true,
|
|
111
114
|
"expect": [
|
|
112
115
|
[
|
|
113
116
|
"standardResult.totals.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "elements",
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"result.rules.elements.data.total",
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
"type": "test",
|
|
39
40
|
"which": "testaro",
|
|
40
41
|
"what": "elements",
|
|
42
|
+
"stopOnFail": true,
|
|
41
43
|
"expect": [
|
|
42
44
|
[
|
|
43
45
|
"result.rules.elements.data.total",
|
|
@@ -58,6 +60,7 @@
|
|
|
58
60
|
"type": "test",
|
|
59
61
|
"which": "testaro",
|
|
60
62
|
"what": "elements",
|
|
63
|
+
"stopOnFail": true,
|
|
61
64
|
"expect": [
|
|
62
65
|
[
|
|
63
66
|
"result.rules.elements.data.total",
|
|
@@ -78,6 +81,7 @@
|
|
|
78
81
|
"type": "test",
|
|
79
82
|
"which": "testaro",
|
|
80
83
|
"what": "elements",
|
|
84
|
+
"stopOnFail": true,
|
|
81
85
|
"expect": [
|
|
82
86
|
[
|
|
83
87
|
"result.rules.elements.data.total",
|
|
@@ -98,6 +102,7 @@
|
|
|
98
102
|
"type": "test",
|
|
99
103
|
"which": "testaro",
|
|
100
104
|
"what": "elements",
|
|
105
|
+
"stopOnFail": true,
|
|
101
106
|
"expect": [
|
|
102
107
|
[
|
|
103
108
|
"result.rules.elements.data.total",
|
|
@@ -148,6 +153,7 @@
|
|
|
148
153
|
"type": "test",
|
|
149
154
|
"which": "testaro",
|
|
150
155
|
"what": "elements",
|
|
156
|
+
"stopOnFail": true,
|
|
151
157
|
"expect": [
|
|
152
158
|
[
|
|
153
159
|
"result.rules.elements.data.total",
|
|
@@ -178,6 +184,7 @@
|
|
|
178
184
|
"type": "test",
|
|
179
185
|
"which": "testaro",
|
|
180
186
|
"what": "elements",
|
|
187
|
+
"stopOnFail": true,
|
|
181
188
|
"expect": [
|
|
182
189
|
[
|
|
183
190
|
"result.rules.elements.data.items.0.textContent",
|
|
@@ -204,6 +211,7 @@
|
|
|
204
211
|
"which": "testaro",
|
|
205
212
|
"what": "elements",
|
|
206
213
|
"attribute": "class",
|
|
214
|
+
"stopOnFail": true,
|
|
207
215
|
"expect": [
|
|
208
216
|
[
|
|
209
217
|
"result.rules.elements.data.total",
|
|
@@ -234,6 +242,7 @@
|
|
|
234
242
|
"type": "test",
|
|
235
243
|
"which": "testaro",
|
|
236
244
|
"what": "elements",
|
|
245
|
+
"stopOnFail": true,
|
|
237
246
|
"expect": [
|
|
238
247
|
[
|
|
239
248
|
"result.rules.elements.data.items.0.textContent",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "embedded active elements",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"which": "testaro",
|
|
47
48
|
"what": "embedded active elements",
|
|
48
49
|
"withItems": true,
|
|
50
|
+
"stopOnFail": true,
|
|
49
51
|
"expect": [
|
|
50
52
|
[
|
|
51
53
|
"standardResult.totals.2",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"which": "testaro",
|
|
109
111
|
"what": "embedded active elements",
|
|
110
112
|
"withItems": false,
|
|
113
|
+
"stopOnFail": true,
|
|
111
114
|
"expect": [
|
|
112
115
|
[
|
|
113
116
|
"standardResult.totals.2",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "filter",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"which": "testaro",
|
|
47
48
|
"what": "filter",
|
|
48
49
|
"withItems": true,
|
|
50
|
+
"stopOnFail": true,
|
|
49
51
|
"expect": [
|
|
50
52
|
[
|
|
51
53
|
"standardResult.totals.2",
|
|
@@ -118,6 +120,7 @@
|
|
|
118
120
|
"which": "testaro",
|
|
119
121
|
"what": "filter",
|
|
120
122
|
"withItems": false,
|
|
123
|
+
"stopOnFail": true,
|
|
121
124
|
"expect": [
|
|
122
125
|
[
|
|
123
126
|
"standardResult.totals.2",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "Tab-focusability",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"which": "testaro",
|
|
47
48
|
"what": "Tab-focusability",
|
|
48
49
|
"withItems": true,
|
|
50
|
+
"stopOnFail": true,
|
|
49
51
|
"expect": [
|
|
50
52
|
[
|
|
51
53
|
"standardResult.totals.2",
|
|
@@ -93,6 +95,7 @@
|
|
|
93
95
|
"which": "testaro",
|
|
94
96
|
"what": "Tab-focusability",
|
|
95
97
|
"withItems": true,
|
|
98
|
+
"stopOnFail": true,
|
|
96
99
|
"expect": [
|
|
97
100
|
[
|
|
98
101
|
"standardResult.totals.2",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
21
|
"what": "focus indication",
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"which": "testaro",
|
|
52
53
|
"withItems": true,
|
|
53
54
|
"what": "focus indication",
|
|
55
|
+
"stopOnFail": true,
|
|
54
56
|
"expect": [
|
|
55
57
|
[
|
|
56
58
|
"standardResult.totals.2",
|
|
@@ -133,6 +135,7 @@
|
|
|
133
135
|
"which": "testaro",
|
|
134
136
|
"withItems": false,
|
|
135
137
|
"what": "focus indication",
|
|
138
|
+
"stopOnFail": true,
|
|
136
139
|
"expect": [
|
|
137
140
|
[
|
|
138
141
|
"standardResult.totals.1",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "focusability and operability",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"which": "testaro",
|
|
52
53
|
"what": "focusability and operability",
|
|
53
54
|
"withItems": true,
|
|
55
|
+
"stopOnFail": true,
|
|
54
56
|
"expect": [
|
|
55
57
|
[
|
|
56
58
|
"standardResult.totals.2",
|
|
@@ -158,6 +160,7 @@
|
|
|
158
160
|
"which": "testaro",
|
|
159
161
|
"what": "focusability and operability",
|
|
160
162
|
"withItems": false,
|
|
163
|
+
"stopOnFail": true,
|
|
161
164
|
"expect": [
|
|
162
165
|
[
|
|
163
166
|
"standardResult.totals.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -52,6 +53,7 @@
|
|
|
52
53
|
"type": "test",
|
|
53
54
|
"which": "testaro",
|
|
54
55
|
"withItems": true,
|
|
56
|
+
"stopOnFail": true,
|
|
55
57
|
"expect": [
|
|
56
58
|
[
|
|
57
59
|
"standardResult.totals.3",
|
|
@@ -191,6 +193,7 @@
|
|
|
191
193
|
"type": "test",
|
|
192
194
|
"which": "testaro",
|
|
193
195
|
"withItems": false,
|
|
196
|
+
"stopOnFail": true,
|
|
194
197
|
"expect": [
|
|
195
198
|
[
|
|
196
199
|
"standardResult.totals.3",
|
|
@@ -235,6 +238,7 @@
|
|
|
235
238
|
"type": "test",
|
|
236
239
|
"which": "testaro",
|
|
237
240
|
"withItems": false,
|
|
241
|
+
"stopOnFail": true,
|
|
238
242
|
"expect": [
|
|
239
243
|
[
|
|
240
244
|
"standardResult.totals.3",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "Labeling",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"which": "testaro",
|
|
52
53
|
"what": "Labeling",
|
|
53
54
|
"withItems": true,
|
|
55
|
+
"stopOnFail": true,
|
|
54
56
|
"expect": [
|
|
55
57
|
[
|
|
56
58
|
"standardResult.totals.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.3",
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"type": "test",
|
|
85
86
|
"which": "testaro",
|
|
86
87
|
"withItems": false,
|
|
88
|
+
"stopOnFail": true,
|
|
87
89
|
"expect": [
|
|
88
90
|
[
|
|
89
91
|
"standardResult.totals.3",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.1",
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
"type": "test",
|
|
90
91
|
"which": "testaro",
|
|
91
92
|
"withItems": false,
|
|
93
|
+
"stopOnFail": true,
|
|
92
94
|
"expect": [
|
|
93
95
|
[
|
|
94
96
|
"standardResult.totals.1",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
"type": "test",
|
|
90
91
|
"which": "testaro",
|
|
91
92
|
"withItems": false,
|
|
93
|
+
"stopOnFail": true,
|
|
92
94
|
"expect": [
|
|
93
95
|
[
|
|
94
96
|
"standardResult.totals.0",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"type": "test",
|
|
85
86
|
"which": "testaro",
|
|
86
87
|
"withItems": false,
|
|
88
|
+
"stopOnFail": true,
|
|
87
89
|
"expect": [
|
|
88
90
|
[
|
|
89
91
|
"standardResult.totals.0",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "links without destinations",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -81,6 +82,7 @@
|
|
|
81
82
|
"which": "testaro",
|
|
82
83
|
"what": "links without destinations",
|
|
83
84
|
"withItems": false,
|
|
85
|
+
"stopOnFail": true,
|
|
84
86
|
"expect": [
|
|
85
87
|
[
|
|
86
88
|
"standardResult.totals.2",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "adjacent-link underlining",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.1",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"which": "testaro",
|
|
47
48
|
"what": "adjacent-link underlining",
|
|
48
49
|
"withItems": true,
|
|
50
|
+
"stopOnFail": true,
|
|
49
51
|
"expect": [
|
|
50
52
|
[
|
|
51
53
|
"standardResult.totals.1",
|
|
@@ -78,6 +80,7 @@
|
|
|
78
80
|
"which": "testaro",
|
|
79
81
|
"what": "inline-link underlining",
|
|
80
82
|
"withItems": true,
|
|
83
|
+
"stopOnFail": true,
|
|
81
84
|
"expect": [
|
|
82
85
|
[
|
|
83
86
|
"standardResult.totals.1",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "small text",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -96,6 +97,7 @@
|
|
|
96
97
|
"which": "testaro",
|
|
97
98
|
"what": "small text",
|
|
98
99
|
"withItems": false,
|
|
100
|
+
"stopOnFail": true,
|
|
99
101
|
"expect": [
|
|
100
102
|
[
|
|
101
103
|
"standardResult.totals.2",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
{
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
|
+
"stopOnFail": true,
|
|
20
21
|
"expect": [
|
|
21
22
|
[
|
|
22
23
|
"standardResult.totals.0",
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
"type": "test",
|
|
60
61
|
"which": "testaro",
|
|
61
62
|
"what": "spontaneous change of content",
|
|
63
|
+
"stopOnFail": true,
|
|
62
64
|
"expect": [
|
|
63
65
|
[
|
|
64
66
|
"standardResult.instances.length",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.2",
|
|
@@ -105,6 +106,7 @@
|
|
|
105
106
|
"which": "testaro",
|
|
106
107
|
"what": "tables used for layout",
|
|
107
108
|
"withItems": false,
|
|
109
|
+
"stopOnFail": true,
|
|
108
110
|
"expect": [
|
|
109
111
|
[
|
|
110
112
|
"standardResult.totals.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"type": "test",
|
|
85
86
|
"which": "testaro",
|
|
86
87
|
"withItems": false,
|
|
88
|
+
"stopOnFail": true,
|
|
87
89
|
"expect": [
|
|
88
90
|
[
|
|
89
91
|
"standardResult.totals.0",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "radioSet",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"which": "testaro",
|
|
47
48
|
"what": "radioSet",
|
|
48
49
|
"withItems": true,
|
|
50
|
+
"stopOnFail": true,
|
|
49
51
|
"expect": [
|
|
50
52
|
[
|
|
51
53
|
"standardResult.totals.2",
|
|
@@ -148,6 +150,7 @@
|
|
|
148
150
|
"which": "testaro",
|
|
149
151
|
"what": "radioSet",
|
|
150
152
|
"withItems": false,
|
|
153
|
+
"stopOnFail": true,
|
|
151
154
|
"expect": [
|
|
152
155
|
[
|
|
153
156
|
"standardResult.totals.2",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "role",
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.1",
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
"type": "test",
|
|
51
52
|
"which": "testaro",
|
|
52
53
|
"what": "role",
|
|
54
|
+
"stopOnFail": true,
|
|
53
55
|
"expect": [
|
|
54
56
|
[
|
|
55
57
|
"standardResult.totals.1",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
21
|
"what": "styleDiff",
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.0",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"which": "testaro",
|
|
52
53
|
"withItems": true,
|
|
53
54
|
"what": "styleDiff",
|
|
55
|
+
"stopOnFail": true,
|
|
54
56
|
"expect": [
|
|
55
57
|
[
|
|
56
58
|
"standardResult.totals.0",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "tab-list navigation",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.0",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"which": "testaro",
|
|
52
53
|
"what": "tab-list navigation",
|
|
53
54
|
"withItems": true,
|
|
55
|
+
"stopOnFail": true,
|
|
54
56
|
"expect": [
|
|
55
57
|
[
|
|
56
58
|
"standardResult.totals.0",
|
|
@@ -138,6 +140,7 @@
|
|
|
138
140
|
"which": "testaro",
|
|
139
141
|
"what": "tab-list navigation",
|
|
140
142
|
"withItems": false,
|
|
143
|
+
"stopOnFail": true,
|
|
141
144
|
"expect": [
|
|
142
145
|
[
|
|
143
146
|
"standardResult.totals.0",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"withItems": true,
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"standardResult.totals.0",
|
|
@@ -114,6 +115,7 @@
|
|
|
114
115
|
"type": "test",
|
|
115
116
|
"which": "testaro",
|
|
116
117
|
"withItems": false,
|
|
118
|
+
"stopOnFail": true,
|
|
117
119
|
"expect": [
|
|
118
120
|
[
|
|
119
121
|
"standardResult.totals.0",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "text nodes",
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"result.rules.textNodes.data.nodeCount",
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
"type": "test",
|
|
39
40
|
"which": "testaro",
|
|
40
41
|
"what": "text nodes",
|
|
42
|
+
"stopOnFail": true,
|
|
41
43
|
"expect": [
|
|
42
44
|
[
|
|
43
45
|
"result.rules.textNodes.data.nodeCount",
|
|
@@ -58,6 +60,7 @@
|
|
|
58
60
|
"type": "test",
|
|
59
61
|
"which": "testaro",
|
|
60
62
|
"what": "text nodes",
|
|
63
|
+
"stopOnFail": true,
|
|
61
64
|
"expect": [
|
|
62
65
|
[
|
|
63
66
|
"result.rules.textNodes.data.nodeCount",
|
|
@@ -83,6 +86,7 @@
|
|
|
83
86
|
"type": "test",
|
|
84
87
|
"which": "testaro",
|
|
85
88
|
"what": "text nodes",
|
|
89
|
+
"stopOnFail": true,
|
|
86
90
|
"expect": [
|
|
87
91
|
[
|
|
88
92
|
"result.rules.textNodes.data.nodeCount",
|
|
@@ -167,6 +171,7 @@
|
|
|
167
171
|
"type": "test",
|
|
168
172
|
"which": "testaro",
|
|
169
173
|
"what": "text nodes",
|
|
174
|
+
"stopOnFail": true,
|
|
170
175
|
"expect": [
|
|
171
176
|
[
|
|
172
177
|
"result.rules.textNodes.data.nodeCount",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"type": "test",
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "document title",
|
|
21
|
+
"stopOnFail": true,
|
|
21
22
|
"expect": [
|
|
22
23
|
[
|
|
23
24
|
"result.rules.title.data.title",
|
|
@@ -40,6 +41,7 @@
|
|
|
40
41
|
"type": "test",
|
|
41
42
|
"which": "testaro",
|
|
42
43
|
"what": "document title",
|
|
44
|
+
"stopOnFail": true,
|
|
43
45
|
"expect": [
|
|
44
46
|
[
|
|
45
47
|
"result.rules.title.data.title",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "title attributes on inappropriate elements",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.2",
|
|
@@ -86,6 +87,7 @@
|
|
|
86
87
|
"which": "testaro",
|
|
87
88
|
"what": "title attributes on inappropriate elements",
|
|
88
89
|
"withItems": false,
|
|
90
|
+
"stopOnFail": true,
|
|
89
91
|
"expect": [
|
|
90
92
|
[
|
|
91
93
|
"standardResult.totals.2",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"which": "testaro",
|
|
20
20
|
"what": "zIndex",
|
|
21
21
|
"withItems": true,
|
|
22
|
+
"stopOnFail": true,
|
|
22
23
|
"expect": [
|
|
23
24
|
[
|
|
24
25
|
"standardResult.totals.0",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"which": "testaro",
|
|
52
53
|
"what": "zIndex",
|
|
53
54
|
"withItems": true,
|
|
55
|
+
"stopOnFail": true,
|
|
54
56
|
"expect": [
|
|
55
57
|
[
|
|
56
58
|
"standardResult.totals.0",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"which": "testaro",
|
|
109
111
|
"what": "zIndex",
|
|
110
112
|
"withItems": false,
|
|
113
|
+
"stopOnFail": true,
|
|
111
114
|
"expect": [
|
|
112
115
|
[
|
|
113
116
|
"standardResult.totals.0",
|