testaro 4.2.1 → 4.2.2
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/commands.js +7 -7
- package/package.json +1 -1
- package/samples/batches/railpass.json +11 -0
- package/samples/scripts/asp09.json +151 -0
package/commands.js
CHANGED
|
@@ -104,13 +104,6 @@ exports.commands = {
|
|
|
104
104
|
what: [false, 'string', 'isState', 'comment']
|
|
105
105
|
}
|
|
106
106
|
],
|
|
107
|
-
test: [
|
|
108
|
-
'Perform a test',
|
|
109
|
-
{
|
|
110
|
-
which: [true, 'string', 'isTest', 'test name'],
|
|
111
|
-
what: [false, 'string', 'hasLength', 'comment']
|
|
112
|
-
}
|
|
113
|
-
],
|
|
114
107
|
tenonRequest: [
|
|
115
108
|
'Request a Tenon test',
|
|
116
109
|
{
|
|
@@ -119,6 +112,13 @@ exports.commands = {
|
|
|
119
112
|
what: [false, 'string', 'hasLength', 'comment']
|
|
120
113
|
}
|
|
121
114
|
],
|
|
115
|
+
test: [
|
|
116
|
+
'Perform a test',
|
|
117
|
+
{
|
|
118
|
+
which: [true, 'string', 'isTest', 'test name'],
|
|
119
|
+
what: [false, 'string', 'hasLength', 'comment']
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
122
|
text: [
|
|
123
123
|
'Enter text into a text input, optionally with 1 placeholder for an all-caps literal environment variable',
|
|
124
124
|
{
|
package/package.json
CHANGED
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "asp09",
|
|
3
|
+
"what": "AATT, Alfa, Axe, IBM, WAVE, and 16 custom tests",
|
|
4
|
+
"strict": true,
|
|
5
|
+
"commands": [
|
|
6
|
+
{
|
|
7
|
+
"type": "launch",
|
|
8
|
+
"which": "webkit",
|
|
9
|
+
"what": "used for tests on which chromium fails on some URLs"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"type": "url",
|
|
13
|
+
"which": "https://*",
|
|
14
|
+
"what": "any page"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "test",
|
|
18
|
+
"which": "motion",
|
|
19
|
+
"what": "spontaneous change of content",
|
|
20
|
+
"delay": 2400,
|
|
21
|
+
"interval": 2600,
|
|
22
|
+
"count": 5
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "test",
|
|
26
|
+
"which": "axe",
|
|
27
|
+
"withItems": true,
|
|
28
|
+
"rules": [],
|
|
29
|
+
"what": "Axe core, all rules"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "launch",
|
|
33
|
+
"which": "chromium",
|
|
34
|
+
"what": "used for most tests"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "url",
|
|
38
|
+
"which": "https://*",
|
|
39
|
+
"what": "any page"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"type": "test",
|
|
43
|
+
"which": "bulk",
|
|
44
|
+
"what": "count of visible elements"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "test",
|
|
48
|
+
"which": "embAc",
|
|
49
|
+
"what": "active elements incorrectly embedded in each other",
|
|
50
|
+
"withItems": true
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "test",
|
|
54
|
+
"which": "focAll",
|
|
55
|
+
"what": "Tab-focusability"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"type": "test",
|
|
59
|
+
"which": "focInd",
|
|
60
|
+
"what": "focus indicators",
|
|
61
|
+
"withItems": true,
|
|
62
|
+
"revealAll": true
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"type": "test",
|
|
66
|
+
"which": "focOp",
|
|
67
|
+
"what": "focusability and operability of elements",
|
|
68
|
+
"withItems": true
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "test",
|
|
72
|
+
"which": "hover",
|
|
73
|
+
"what": "hover-triggered content changes",
|
|
74
|
+
"withItems": true
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"type": "test",
|
|
78
|
+
"which": "labClash",
|
|
79
|
+
"what": "unlabeled and mislabeled form controls",
|
|
80
|
+
"withItems": true
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"type": "test",
|
|
84
|
+
"which": "linkUl",
|
|
85
|
+
"what": "underlining of inline links",
|
|
86
|
+
"withItems": true
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"type": "test",
|
|
90
|
+
"which": "menuNav",
|
|
91
|
+
"what": "keyboard navigation within true-focus menus",
|
|
92
|
+
"withItems": true
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"type": "test",
|
|
96
|
+
"which": "radioSet",
|
|
97
|
+
"what": "grouping of radio buttons in fieldsets",
|
|
98
|
+
"withItems": true
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"type": "test",
|
|
102
|
+
"which": "role",
|
|
103
|
+
"what": "validity and necessity of role assignments"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"type": "test",
|
|
107
|
+
"which": "styleDiff",
|
|
108
|
+
"what": "style consistency of headings, buttons, and links",
|
|
109
|
+
"withItems": true
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"type": "test",
|
|
113
|
+
"which": "tabNav",
|
|
114
|
+
"what": "keyboard navigation within tab lists",
|
|
115
|
+
"withItems": true
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"type": "test",
|
|
119
|
+
"which": "zIndex",
|
|
120
|
+
"what": "elements with non-auto z indexes",
|
|
121
|
+
"withItems": true
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": "test",
|
|
125
|
+
"which": "ibm",
|
|
126
|
+
"withItems": true,
|
|
127
|
+
"what": "IBM Accessibility Checker"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"type": "test",
|
|
131
|
+
"which": "aatt",
|
|
132
|
+
"what": "AATT with HTML CodeSniffer"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"type": "test",
|
|
136
|
+
"which": "alfa",
|
|
137
|
+
"what": "Siteimprove alfa"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"type": "test",
|
|
141
|
+
"which": "wave",
|
|
142
|
+
"reportType": 4,
|
|
143
|
+
"what": "WAVE, report-type 4"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"type": "score",
|
|
147
|
+
"which": "asp09",
|
|
148
|
+
"what": "5 packages and 16 custom tests, with empirical duplication discounts"
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
}
|