testaro 13.0.2 → 14.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/README.md +190 -94
- package/actSpecs.js +17 -158
- package/package.json +1 -1
- package/run.js +31 -31
- package/standardize.js +338 -0
- package/{tests → testaro}/allHidden.js +36 -1
- package/{tests → testaro}/attVal.js +36 -2
- package/{tests → testaro}/autocomplete.js +34 -1
- package/{tests → testaro}/bulk.js +15 -1
- package/{tests → testaro}/docType.js +15 -1
- package/{tests → testaro}/dupAtt.js +34 -1
- package/{tests → testaro}/elements.js +9 -3
- package/testaro/embAc.js +78 -0
- package/{tests → testaro}/filter.js +35 -1
- package/{tests → testaro}/focAll.js +20 -3
- package/{tests → testaro}/focInd.js +45 -3
- package/{tests → testaro}/focOp.js +61 -2
- package/{tests → testaro}/focVis.js +35 -1
- package/{tests → testaro}/hover.js +67 -5
- package/{tests → testaro}/labClash.js +54 -4
- package/{tests → testaro}/linkTo.js +33 -1
- package/{tests → testaro}/linkUl.js +43 -5
- package/{tests → testaro}/menuNav.js +42 -1
- package/{tests → testaro}/miniText.js +32 -1
- package/{tests → testaro}/motion.js +27 -4
- package/{tests → testaro}/nonTable.js +32 -1
- package/{tests → testaro}/radioSet.js +33 -2
- package/{tests → testaro}/role.js +38 -1
- package/{tests → testaro}/styleDiff.js +43 -2
- package/{tests → testaro}/tabNav.js +42 -1
- package/{tests → testaro}/textNodes.js +6 -2
- package/{tests → testaro}/title.js +8 -4
- package/{tests → testaro}/titledEl.js +32 -1
- package/{tests → testaro}/zIndex.js +40 -2
- package/tests/alfa.js +72 -75
- package/tests/continuum.js +6 -2
- package/tests/ibm.js +14 -42
- package/tests/testaro.js +73 -0
- package/validation/tests/jobs/allHidden.json +877 -174
- package/validation/tests/jobs/attVal.json +57 -19
- package/validation/tests/jobs/autocomplete.json +34 -8
- package/validation/tests/jobs/bulk.json +33 -7
- package/validation/tests/jobs/docType.json +23 -5
- package/validation/tests/jobs/dupAtt.json +47 -8
- package/validation/tests/jobs/elements.json +231 -70
- package/validation/tests/jobs/embAc.json +70 -15
- package/validation/tests/jobs/filter.json +56 -12
- package/validation/tests/jobs/focAll.json +64 -16
- package/validation/tests/jobs/focInd.json +107 -23
- package/validation/tests/jobs/focOp.json +93 -21
- package/validation/tests/jobs/focVis.json +16 -4
- package/validation/tests/jobs/hover.json +246 -56
- package/validation/tests/jobs/labClash.json +43 -11
- package/validation/tests/jobs/linkTo.json +16 -4
- package/validation/tests/jobs/linkUl.json +79 -19
- package/validation/tests/jobs/menuNav.json +313 -65
- package/validation/tests/jobs/miniText.json +21 -5
- package/validation/tests/jobs/motion.json +81 -23
- package/validation/tests/jobs/nonTable.json +26 -6
- package/validation/tests/jobs/radioSet.json +43 -11
- package/validation/tests/jobs/role.json +93 -19
- package/validation/tests/jobs/styleDiff.json +124 -28
- package/validation/tests/jobs/tabNav.json +313 -65
- package/validation/tests/jobs/textNodes.json +190 -49
- package/validation/tests/jobs/title.json +23 -5
- package/validation/tests/jobs/titledEl.json +26 -6
- package/validation/tests/jobs/zIndex.json +28 -8
- package/validation/tests/old/allHidden.json +314 -0
- package/validation/tests/old/attVal.json +60 -0
- package/validation/tests/old/autocomplete.json +51 -0
- package/validation/tests/old/bulk.json +48 -0
- package/validation/tests/old/docType.json +46 -0
- package/validation/tests/old/dupAtt.json +51 -0
- package/validation/tests/old/elements.json +140 -0
- package/validation/tests/old/embAc.json +54 -0
- package/validation/tests/old/filter.json +55 -0
- package/validation/tests/old/focAll.json +68 -0
- package/validation/tests/old/focInd.json +69 -0
- package/validation/tests/old/focOp.json +62 -0
- package/validation/tests/old/focVis.json +35 -0
- package/validation/tests/old/hover.json +118 -0
- package/validation/tests/old/labClash.json +52 -0
- package/validation/tests/old/linkTo.json +35 -0
- package/validation/tests/old/linkUl.json +71 -0
- package/validation/tests/old/menuNav.json +106 -0
- package/validation/tests/old/miniText.json +36 -0
- package/validation/tests/old/motion.json +62 -0
- package/validation/tests/old/nonTable.json +37 -0
- package/validation/tests/old/radioSet.json +52 -0
- package/validation/tests/old/role.json +60 -0
- package/validation/tests/old/styleDiff.json +71 -0
- package/validation/tests/old/tabNav.json +106 -0
- package/validation/tests/old/temp.js +28 -0
- package/validation/tests/old/textNodes.json +98 -0
- package/validation/tests/old/title.json +46 -0
- package/validation/tests/old/titledEl.json +37 -0
- package/validation/tests/old/zIndex.json +49 -0
- package/validation/tests/targets/attVal/good.html +1 -1
- package/validation/tests/targets/elements/index.html +1 -0
- package/tests/embAc.js +0 -36
|
@@ -16,13 +16,29 @@
|
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"type": "test",
|
|
19
|
-
"which": "
|
|
19
|
+
"which": "testaro",
|
|
20
20
|
"what": "Labeling",
|
|
21
|
-
"withItems":
|
|
21
|
+
"withItems": true,
|
|
22
22
|
"expect": [
|
|
23
|
-
[
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
[
|
|
24
|
+
"result.rules.labClash.data.totals.mislabeled",
|
|
25
|
+
"=",
|
|
26
|
+
0
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
"result.rules.labClash.data.totals.unlabeled",
|
|
30
|
+
"=",
|
|
31
|
+
0
|
|
32
|
+
],
|
|
33
|
+
[
|
|
34
|
+
"result.rules.labClash.data.totals.wellLabeled",
|
|
35
|
+
"=",
|
|
36
|
+
7
|
|
37
|
+
]
|
|
38
|
+
],
|
|
39
|
+
"rules": [
|
|
40
|
+
"y",
|
|
41
|
+
"labClash"
|
|
26
42
|
]
|
|
27
43
|
},
|
|
28
44
|
{
|
|
@@ -32,13 +48,29 @@
|
|
|
32
48
|
},
|
|
33
49
|
{
|
|
34
50
|
"type": "test",
|
|
35
|
-
"which": "
|
|
51
|
+
"which": "testaro",
|
|
36
52
|
"what": "Labeling",
|
|
37
|
-
"withItems":
|
|
53
|
+
"withItems": true,
|
|
38
54
|
"expect": [
|
|
39
|
-
[
|
|
40
|
-
|
|
41
|
-
|
|
55
|
+
[
|
|
56
|
+
"result.rules.labClash.data.totals.mislabeled",
|
|
57
|
+
"=",
|
|
58
|
+
3
|
|
59
|
+
],
|
|
60
|
+
[
|
|
61
|
+
"result.rules.labClash.data.totals.unlabeled",
|
|
62
|
+
"=",
|
|
63
|
+
3
|
|
64
|
+
],
|
|
65
|
+
[
|
|
66
|
+
"result.rules.labClash.data.totals.wellLabeled",
|
|
67
|
+
"=",
|
|
68
|
+
0
|
|
69
|
+
]
|
|
70
|
+
],
|
|
71
|
+
"rules": [
|
|
72
|
+
"y",
|
|
73
|
+
"labClash"
|
|
42
74
|
]
|
|
43
75
|
}
|
|
44
76
|
],
|
|
@@ -47,6 +79,6 @@
|
|
|
47
79
|
"host": {},
|
|
48
80
|
"requester": ""
|
|
49
81
|
},
|
|
50
|
-
"creationTime": "
|
|
82
|
+
"creationTime": "2013-05-28T12:00:00",
|
|
51
83
|
"timeStamp": "00000"
|
|
52
84
|
}
|
|
@@ -16,12 +16,24 @@
|
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"type": "test",
|
|
19
|
-
"which": "
|
|
19
|
+
"which": "testaro",
|
|
20
20
|
"what": "links without destinations",
|
|
21
21
|
"withItems": true,
|
|
22
22
|
"expect": [
|
|
23
|
-
[
|
|
24
|
-
|
|
23
|
+
[
|
|
24
|
+
"result.rules.linkTo.data.total",
|
|
25
|
+
"=",
|
|
26
|
+
1
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
"result.rules.linkTo.data.items.0",
|
|
30
|
+
"=",
|
|
31
|
+
"nothing at all"
|
|
32
|
+
]
|
|
33
|
+
],
|
|
34
|
+
"rules": [
|
|
35
|
+
"y",
|
|
36
|
+
"linkTo"
|
|
25
37
|
]
|
|
26
38
|
}
|
|
27
39
|
],
|
|
@@ -30,6 +42,6 @@
|
|
|
30
42
|
"host": {},
|
|
31
43
|
"requester": ""
|
|
32
44
|
},
|
|
33
|
-
"creationTime": "
|
|
45
|
+
"creationTime": "2013-05-28T12:00:00",
|
|
34
46
|
"timeStamp": "00000"
|
|
35
47
|
}
|
|
@@ -16,14 +16,34 @@
|
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"type": "test",
|
|
19
|
-
"which": "
|
|
19
|
+
"which": "testaro",
|
|
20
20
|
"what": "adjacent-link underlining",
|
|
21
|
-
"withItems":
|
|
21
|
+
"withItems": true,
|
|
22
22
|
"expect": [
|
|
23
|
-
[
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
[
|
|
24
|
+
"result.rules.linkUl.data.totals.links",
|
|
25
|
+
"=",
|
|
26
|
+
6
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
"result.rules.linkUl.data.totals.adjacent.total",
|
|
30
|
+
"=",
|
|
31
|
+
2
|
|
32
|
+
],
|
|
33
|
+
[
|
|
34
|
+
"result.rules.linkUl.data.totals.adjacent.underlined",
|
|
35
|
+
"=",
|
|
36
|
+
2
|
|
37
|
+
],
|
|
38
|
+
[
|
|
39
|
+
"result.rules.linkUl.data.totals.adjacent.underlinedPercent",
|
|
40
|
+
"=",
|
|
41
|
+
100
|
|
42
|
+
]
|
|
43
|
+
],
|
|
44
|
+
"rules": [
|
|
45
|
+
"y",
|
|
46
|
+
"linkUl"
|
|
27
47
|
]
|
|
28
48
|
},
|
|
29
49
|
{
|
|
@@ -33,14 +53,34 @@
|
|
|
33
53
|
},
|
|
34
54
|
{
|
|
35
55
|
"type": "test",
|
|
36
|
-
"which": "
|
|
56
|
+
"which": "testaro",
|
|
37
57
|
"what": "adjacent-link underlining",
|
|
38
|
-
"withItems":
|
|
58
|
+
"withItems": true,
|
|
39
59
|
"expect": [
|
|
40
|
-
[
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
60
|
+
[
|
|
61
|
+
"result.rules.linkUl.data.totals.links",
|
|
62
|
+
"=",
|
|
63
|
+
6
|
|
64
|
+
],
|
|
65
|
+
[
|
|
66
|
+
"result.rules.linkUl.data.totals.adjacent.total",
|
|
67
|
+
"=",
|
|
68
|
+
6
|
|
69
|
+
],
|
|
70
|
+
[
|
|
71
|
+
"result.rules.linkUl.data.totals.adjacent.underlined",
|
|
72
|
+
"=",
|
|
73
|
+
0
|
|
74
|
+
],
|
|
75
|
+
[
|
|
76
|
+
"result.rules.linkUl.data.totals.adjacent.underlinedPercent",
|
|
77
|
+
"=",
|
|
78
|
+
0
|
|
79
|
+
]
|
|
80
|
+
],
|
|
81
|
+
"rules": [
|
|
82
|
+
"y",
|
|
83
|
+
"linkUl"
|
|
44
84
|
]
|
|
45
85
|
},
|
|
46
86
|
{
|
|
@@ -50,14 +90,34 @@
|
|
|
50
90
|
},
|
|
51
91
|
{
|
|
52
92
|
"type": "test",
|
|
53
|
-
"which": "
|
|
93
|
+
"which": "testaro",
|
|
54
94
|
"what": "adjacent-link underlining",
|
|
55
|
-
"withItems":
|
|
95
|
+
"withItems": true,
|
|
56
96
|
"expect": [
|
|
57
|
-
[
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
97
|
+
[
|
|
98
|
+
"result.rules.linkUl.data.totals.links",
|
|
99
|
+
"=",
|
|
100
|
+
2
|
|
101
|
+
],
|
|
102
|
+
[
|
|
103
|
+
"result.rules.linkUl.data.totals.adjacent.total",
|
|
104
|
+
"=",
|
|
105
|
+
0
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"result.rules.linkUl.data.totals.adjacent.underlined",
|
|
109
|
+
"=",
|
|
110
|
+
0
|
|
111
|
+
],
|
|
112
|
+
[
|
|
113
|
+
"result.rules.linkUl.data.totals.adjacent.underlinedPercent",
|
|
114
|
+
"=",
|
|
115
|
+
"N/A"
|
|
116
|
+
]
|
|
117
|
+
],
|
|
118
|
+
"rules": [
|
|
119
|
+
"y",
|
|
120
|
+
"linkUl"
|
|
61
121
|
]
|
|
62
122
|
}
|
|
63
123
|
],
|
|
@@ -66,6 +126,6 @@
|
|
|
66
126
|
"host": {},
|
|
67
127
|
"requester": ""
|
|
68
128
|
},
|
|
69
|
-
"creationTime": "
|
|
129
|
+
"creationTime": "2013-05-28T12:00:00",
|
|
70
130
|
"timeStamp": "00000"
|
|
71
131
|
}
|
|
@@ -16,40 +16,164 @@
|
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"type": "test",
|
|
19
|
-
"which": "
|
|
19
|
+
"which": "testaro",
|
|
20
20
|
"what": "menu navigation",
|
|
21
|
-
"withItems":
|
|
21
|
+
"withItems": true,
|
|
22
22
|
"expect": [
|
|
23
|
-
[
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
[
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
[
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
[
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
[
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
[
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
23
|
+
[
|
|
24
|
+
"result.rules.menuNav.data.totals.navigations.all.total",
|
|
25
|
+
"=",
|
|
26
|
+
20
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
"result.rules.menuNav.data.totals.navigations.all.correct",
|
|
30
|
+
"=",
|
|
31
|
+
20
|
|
32
|
+
],
|
|
33
|
+
[
|
|
34
|
+
"result.rules.menuNav.data.totals.navigations.all.incorrect",
|
|
35
|
+
"=",
|
|
36
|
+
0
|
|
37
|
+
],
|
|
38
|
+
[
|
|
39
|
+
"result.rules.menuNav.data.totals.navigations.specific.tab.total",
|
|
40
|
+
"=",
|
|
41
|
+
4
|
|
42
|
+
],
|
|
43
|
+
[
|
|
44
|
+
"result.rules.menuNav.data.totals.navigations.specific.tab.correct",
|
|
45
|
+
"=",
|
|
46
|
+
4
|
|
47
|
+
],
|
|
48
|
+
[
|
|
49
|
+
"result.rules.menuNav.data.totals.navigations.specific.tab.incorrect",
|
|
50
|
+
"=",
|
|
51
|
+
0
|
|
52
|
+
],
|
|
53
|
+
[
|
|
54
|
+
"result.rules.menuNav.data.totals.navigations.specific.left.total",
|
|
55
|
+
"=",
|
|
56
|
+
2
|
|
57
|
+
],
|
|
58
|
+
[
|
|
59
|
+
"result.rules.menuNav.data.totals.navigations.specific.left.correct",
|
|
60
|
+
"=",
|
|
61
|
+
2
|
|
62
|
+
],
|
|
63
|
+
[
|
|
64
|
+
"result.rules.menuNav.data.totals.navigations.specific.left.incorrect",
|
|
65
|
+
"=",
|
|
66
|
+
0
|
|
67
|
+
],
|
|
68
|
+
[
|
|
69
|
+
"result.rules.menuNav.data.totals.navigations.specific.right.total",
|
|
70
|
+
"=",
|
|
71
|
+
2
|
|
72
|
+
],
|
|
73
|
+
[
|
|
74
|
+
"result.rules.menuNav.data.totals.navigations.specific.right.correct",
|
|
75
|
+
"=",
|
|
76
|
+
2
|
|
77
|
+
],
|
|
78
|
+
[
|
|
79
|
+
"result.rules.menuNav.data.totals.navigations.specific.right.incorrect",
|
|
80
|
+
"=",
|
|
81
|
+
0
|
|
82
|
+
],
|
|
83
|
+
[
|
|
84
|
+
"result.rules.menuNav.data.totals.navigations.specific.up.total",
|
|
85
|
+
"=",
|
|
86
|
+
2
|
|
87
|
+
],
|
|
88
|
+
[
|
|
89
|
+
"result.rules.menuNav.data.totals.navigations.specific.up.correct",
|
|
90
|
+
"=",
|
|
91
|
+
2
|
|
92
|
+
],
|
|
93
|
+
[
|
|
94
|
+
"result.rules.menuNav.data.totals.navigations.specific.up.incorrect",
|
|
95
|
+
"=",
|
|
96
|
+
0
|
|
97
|
+
],
|
|
98
|
+
[
|
|
99
|
+
"result.rules.menuNav.data.totals.navigations.specific.down.total",
|
|
100
|
+
"=",
|
|
101
|
+
2
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
"result.rules.menuNav.data.totals.navigations.specific.down.correct",
|
|
105
|
+
"=",
|
|
106
|
+
2
|
|
107
|
+
],
|
|
108
|
+
[
|
|
109
|
+
"result.rules.menuNav.data.totals.navigations.specific.down.incorrect",
|
|
110
|
+
"=",
|
|
111
|
+
0
|
|
112
|
+
],
|
|
113
|
+
[
|
|
114
|
+
"result.rules.menuNav.data.totals.navigations.specific.home.total",
|
|
115
|
+
"=",
|
|
116
|
+
4
|
|
117
|
+
],
|
|
118
|
+
[
|
|
119
|
+
"result.rules.menuNav.data.totals.navigations.specific.home.correct",
|
|
120
|
+
"=",
|
|
121
|
+
4
|
|
122
|
+
],
|
|
123
|
+
[
|
|
124
|
+
"result.rules.menuNav.data.totals.navigations.specific.home.incorrect",
|
|
125
|
+
"=",
|
|
126
|
+
0
|
|
127
|
+
],
|
|
128
|
+
[
|
|
129
|
+
"result.rules.menuNav.data.totals.navigations.specific.end.total",
|
|
130
|
+
"=",
|
|
131
|
+
4
|
|
132
|
+
],
|
|
133
|
+
[
|
|
134
|
+
"result.rules.menuNav.data.totals.navigations.specific.end.correct",
|
|
135
|
+
"=",
|
|
136
|
+
4
|
|
137
|
+
],
|
|
138
|
+
[
|
|
139
|
+
"result.rules.menuNav.data.totals.navigations.specific.end.incorrect",
|
|
140
|
+
"=",
|
|
141
|
+
0
|
|
142
|
+
],
|
|
143
|
+
[
|
|
144
|
+
"result.rules.menuNav.data.totals.menuItems.total",
|
|
145
|
+
"=",
|
|
146
|
+
4
|
|
147
|
+
],
|
|
148
|
+
[
|
|
149
|
+
"result.rules.menuNav.data.totals.menuItems.correct",
|
|
150
|
+
"=",
|
|
151
|
+
4
|
|
152
|
+
],
|
|
153
|
+
[
|
|
154
|
+
"result.rules.menuNav.data.totals.menuItems.incorrect",
|
|
155
|
+
"=",
|
|
156
|
+
0
|
|
157
|
+
],
|
|
158
|
+
[
|
|
159
|
+
"result.rules.menuNav.data.totals.menus.total",
|
|
160
|
+
"=",
|
|
161
|
+
2
|
|
162
|
+
],
|
|
163
|
+
[
|
|
164
|
+
"result.rules.menuNav.data.totals.menus.correct",
|
|
165
|
+
"=",
|
|
166
|
+
2
|
|
167
|
+
],
|
|
168
|
+
[
|
|
169
|
+
"result.rules.menuNav.data.totals.menus.incorrect",
|
|
170
|
+
"=",
|
|
171
|
+
0
|
|
172
|
+
]
|
|
173
|
+
],
|
|
174
|
+
"rules": [
|
|
175
|
+
"y",
|
|
176
|
+
"menuNav"
|
|
53
177
|
]
|
|
54
178
|
},
|
|
55
179
|
{
|
|
@@ -59,40 +183,164 @@
|
|
|
59
183
|
},
|
|
60
184
|
{
|
|
61
185
|
"type": "test",
|
|
62
|
-
"which": "
|
|
186
|
+
"which": "testaro",
|
|
63
187
|
"what": "menu navigation",
|
|
64
|
-
"withItems":
|
|
188
|
+
"withItems": true,
|
|
65
189
|
"expect": [
|
|
66
|
-
[
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
[
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
[
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
[
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
[
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
[
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
190
|
+
[
|
|
191
|
+
"result.rules.menuNav.data.totals.navigations.all.total",
|
|
192
|
+
"=",
|
|
193
|
+
20
|
|
194
|
+
],
|
|
195
|
+
[
|
|
196
|
+
"result.rules.menuNav.data.totals.navigations.all.correct",
|
|
197
|
+
"=",
|
|
198
|
+
12
|
|
199
|
+
],
|
|
200
|
+
[
|
|
201
|
+
"result.rules.menuNav.data.totals.navigations.all.incorrect",
|
|
202
|
+
"=",
|
|
203
|
+
8
|
|
204
|
+
],
|
|
205
|
+
[
|
|
206
|
+
"result.rules.menuNav.data.totals.navigations.specific.tab.total",
|
|
207
|
+
"=",
|
|
208
|
+
4
|
|
209
|
+
],
|
|
210
|
+
[
|
|
211
|
+
"result.rules.menuNav.data.totals.navigations.specific.tab.correct",
|
|
212
|
+
"=",
|
|
213
|
+
4
|
|
214
|
+
],
|
|
215
|
+
[
|
|
216
|
+
"result.rules.menuNav.data.totals.navigations.specific.tab.incorrect",
|
|
217
|
+
"=",
|
|
218
|
+
0
|
|
219
|
+
],
|
|
220
|
+
[
|
|
221
|
+
"result.rules.menuNav.data.totals.navigations.specific.left.total",
|
|
222
|
+
"=",
|
|
223
|
+
2
|
|
224
|
+
],
|
|
225
|
+
[
|
|
226
|
+
"result.rules.menuNav.data.totals.navigations.specific.left.correct",
|
|
227
|
+
"=",
|
|
228
|
+
1
|
|
229
|
+
],
|
|
230
|
+
[
|
|
231
|
+
"result.rules.menuNav.data.totals.navigations.specific.left.incorrect",
|
|
232
|
+
"=",
|
|
233
|
+
1
|
|
234
|
+
],
|
|
235
|
+
[
|
|
236
|
+
"result.rules.menuNav.data.totals.navigations.specific.right.total",
|
|
237
|
+
"=",
|
|
238
|
+
2
|
|
239
|
+
],
|
|
240
|
+
[
|
|
241
|
+
"result.rules.menuNav.data.totals.navigations.specific.right.correct",
|
|
242
|
+
"=",
|
|
243
|
+
1
|
|
244
|
+
],
|
|
245
|
+
[
|
|
246
|
+
"result.rules.menuNav.data.totals.navigations.specific.right.incorrect",
|
|
247
|
+
"=",
|
|
248
|
+
1
|
|
249
|
+
],
|
|
250
|
+
[
|
|
251
|
+
"result.rules.menuNav.data.totals.navigations.specific.up.total",
|
|
252
|
+
"=",
|
|
253
|
+
2
|
|
254
|
+
],
|
|
255
|
+
[
|
|
256
|
+
"result.rules.menuNav.data.totals.navigations.specific.up.correct",
|
|
257
|
+
"=",
|
|
258
|
+
1
|
|
259
|
+
],
|
|
260
|
+
[
|
|
261
|
+
"result.rules.menuNav.data.totals.navigations.specific.up.incorrect",
|
|
262
|
+
"=",
|
|
263
|
+
1
|
|
264
|
+
],
|
|
265
|
+
[
|
|
266
|
+
"result.rules.menuNav.data.totals.navigations.specific.down.total",
|
|
267
|
+
"=",
|
|
268
|
+
2
|
|
269
|
+
],
|
|
270
|
+
[
|
|
271
|
+
"result.rules.menuNav.data.totals.navigations.specific.down.correct",
|
|
272
|
+
"=",
|
|
273
|
+
1
|
|
274
|
+
],
|
|
275
|
+
[
|
|
276
|
+
"result.rules.menuNav.data.totals.navigations.specific.down.incorrect",
|
|
277
|
+
"=",
|
|
278
|
+
1
|
|
279
|
+
],
|
|
280
|
+
[
|
|
281
|
+
"result.rules.menuNav.data.totals.navigations.specific.home.total",
|
|
282
|
+
"=",
|
|
283
|
+
4
|
|
284
|
+
],
|
|
285
|
+
[
|
|
286
|
+
"result.rules.menuNav.data.totals.navigations.specific.home.correct",
|
|
287
|
+
"=",
|
|
288
|
+
2
|
|
289
|
+
],
|
|
290
|
+
[
|
|
291
|
+
"result.rules.menuNav.data.totals.navigations.specific.home.incorrect",
|
|
292
|
+
"=",
|
|
293
|
+
2
|
|
294
|
+
],
|
|
295
|
+
[
|
|
296
|
+
"result.rules.menuNav.data.totals.navigations.specific.end.total",
|
|
297
|
+
"=",
|
|
298
|
+
4
|
|
299
|
+
],
|
|
300
|
+
[
|
|
301
|
+
"result.rules.menuNav.data.totals.navigations.specific.end.correct",
|
|
302
|
+
"=",
|
|
303
|
+
2
|
|
304
|
+
],
|
|
305
|
+
[
|
|
306
|
+
"result.rules.menuNav.data.totals.navigations.specific.end.incorrect",
|
|
307
|
+
"=",
|
|
308
|
+
2
|
|
309
|
+
],
|
|
310
|
+
[
|
|
311
|
+
"result.rules.menuNav.data.totals.menuItems.total",
|
|
312
|
+
"=",
|
|
313
|
+
4
|
|
314
|
+
],
|
|
315
|
+
[
|
|
316
|
+
"result.rules.menuNav.data.totals.menuItems.correct",
|
|
317
|
+
"=",
|
|
318
|
+
0
|
|
319
|
+
],
|
|
320
|
+
[
|
|
321
|
+
"result.rules.menuNav.data.totals.menuItems.incorrect",
|
|
322
|
+
"=",
|
|
323
|
+
4
|
|
324
|
+
],
|
|
325
|
+
[
|
|
326
|
+
"result.rules.menuNav.data.totals.menus.total",
|
|
327
|
+
"=",
|
|
328
|
+
2
|
|
329
|
+
],
|
|
330
|
+
[
|
|
331
|
+
"result.rules.menuNav.data.totals.menus.correct",
|
|
332
|
+
"=",
|
|
333
|
+
0
|
|
334
|
+
],
|
|
335
|
+
[
|
|
336
|
+
"result.rules.menuNav.data.totals.menus.incorrect",
|
|
337
|
+
"=",
|
|
338
|
+
2
|
|
339
|
+
]
|
|
340
|
+
],
|
|
341
|
+
"rules": [
|
|
342
|
+
"y",
|
|
343
|
+
"menuNav"
|
|
96
344
|
]
|
|
97
345
|
}
|
|
98
346
|
],
|
|
@@ -101,6 +349,6 @@
|
|
|
101
349
|
"host": {},
|
|
102
350
|
"requester": ""
|
|
103
351
|
},
|
|
104
|
-
"creationTime": "
|
|
352
|
+
"creationTime": "2013-05-28T12:00:00",
|
|
105
353
|
"timeStamp": "00000"
|
|
106
354
|
}
|
|
@@ -16,13 +16,29 @@
|
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"type": "test",
|
|
19
|
-
"which": "
|
|
19
|
+
"which": "testaro",
|
|
20
20
|
"what": "small text",
|
|
21
21
|
"withItems": true,
|
|
22
22
|
"expect": [
|
|
23
|
-
[
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
[
|
|
24
|
+
"result.rules.miniText.data.total",
|
|
25
|
+
"=",
|
|
26
|
+
3
|
|
27
|
+
],
|
|
28
|
+
[
|
|
29
|
+
"result.rules.miniText.data.items.0",
|
|
30
|
+
"i",
|
|
31
|
+
"rem"
|
|
32
|
+
],
|
|
33
|
+
[
|
|
34
|
+
"result.rules.miniText.data.items.2",
|
|
35
|
+
"i",
|
|
36
|
+
"named"
|
|
37
|
+
]
|
|
38
|
+
],
|
|
39
|
+
"rules": [
|
|
40
|
+
"y",
|
|
41
|
+
"miniText"
|
|
26
42
|
]
|
|
27
43
|
}
|
|
28
44
|
],
|
|
@@ -31,6 +47,6 @@
|
|
|
31
47
|
"host": {},
|
|
32
48
|
"requester": ""
|
|
33
49
|
},
|
|
34
|
-
"creationTime": "
|
|
50
|
+
"creationTime": "2013-05-28T12:00:00",
|
|
35
51
|
"timeStamp": "00000"
|
|
36
52
|
}
|