doc-detective-common 3.4.1-dev.2 → 3.4.1-dev.3
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/dist/schemas/click_v3.schema.json +142 -6
- package/dist/schemas/config_v3.schema.json +2146 -66
- package/dist/schemas/find_v3.schema.json +626 -20
- package/dist/schemas/report_v3.schema.json +2139 -59
- package/dist/schemas/resolvedTests_v3.schema.json +4304 -144
- package/dist/schemas/screenshot_v3.schema.json +204 -0
- package/dist/schemas/spec_v3.schema.json +2139 -59
- package/dist/schemas/step_v3.schema.json +1075 -35
- package/dist/schemas/test_v3.schema.json +2139 -59
- package/dist/schemas/type_v3.schema.json +94 -0
- package/package.json +1 -1
- package/src/schemas/build/click_v3.schema.json +71 -3
- package/src/schemas/build/find_v3.schema.json +77 -4
- package/src/schemas/build/screenshot_v3.schema.json +68 -0
- package/src/schemas/build/type_v3.schema.json +47 -0
- package/src/schemas/output_schemas/click_v3.schema.json +142 -6
- package/src/schemas/output_schemas/config_v3.schema.json +2146 -66
- package/src/schemas/output_schemas/find_v3.schema.json +626 -20
- package/src/schemas/output_schemas/report_v3.schema.json +2139 -59
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +4304 -144
- package/src/schemas/output_schemas/screenshot_v3.schema.json +204 -0
- package/src/schemas/output_schemas/spec_v3.schema.json +2139 -59
- package/src/schemas/output_schemas/step_v3.schema.json +1075 -35
- package/src/schemas/output_schemas/test_v3.schema.json +2139 -59
- package/src/schemas/output_schemas/type_v3.schema.json +94 -0
- package/src/schemas/schemas.json +14926 -366
- package/src/schemas/src_schemas/click_v3.schema.json +71 -3
- package/src/schemas/src_schemas/find_v3.schema.json +77 -4
- package/src/schemas/src_schemas/screenshot_v3.schema.json +68 -0
- package/src/schemas/src_schemas/type_v3.schema.json +47 -0
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"title": "Click element (simple)",
|
|
8
8
|
"type": "string",
|
|
9
|
-
"description": "
|
|
9
|
+
"description": "Identifier for the element to click. Can be a selector, element text, ARIA name, ID, or test ID."
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"title": "Click element (detailed)",
|
|
@@ -21,6 +21,31 @@
|
|
|
21
21
|
"required": [
|
|
22
22
|
"elementText"
|
|
23
23
|
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"required": [
|
|
27
|
+
"elementId"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"required": [
|
|
32
|
+
"elementTestId"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"required": [
|
|
37
|
+
"elementClass"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"required": [
|
|
42
|
+
"elementAttribute"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"required": [
|
|
47
|
+
"elementAria"
|
|
48
|
+
]
|
|
24
49
|
}
|
|
25
50
|
],
|
|
26
51
|
"properties": {
|
|
@@ -35,11 +60,54 @@
|
|
|
35
60
|
},
|
|
36
61
|
"elementText": {
|
|
37
62
|
"type": "string",
|
|
38
|
-
"description": "Display text of the element to click. If combined with
|
|
63
|
+
"description": "Display text of the element to click. If combined with other element finding fields, the element must match all specified criteria."
|
|
39
64
|
},
|
|
40
65
|
"selector": {
|
|
41
66
|
"type": "string",
|
|
42
|
-
"description": "Selector of the element to click. If combined with
|
|
67
|
+
"description": "Selector of the element to click. If combined with other element finding fields, the element must match all specified criteria."
|
|
68
|
+
},
|
|
69
|
+
"elementId": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "ID attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
72
|
+
},
|
|
73
|
+
"elementTestId": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
76
|
+
},
|
|
77
|
+
"elementClass": {
|
|
78
|
+
"oneOf": [
|
|
79
|
+
{
|
|
80
|
+
"type": "string"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"type": "array",
|
|
84
|
+
"items": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"description": "Class or array of classes that the element must have. Each class supports exact match or regex pattern using /pattern/ syntax. Element must have all specified classes."
|
|
90
|
+
},
|
|
91
|
+
"elementAttribute": {
|
|
92
|
+
"type": "object",
|
|
93
|
+
"description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
|
|
94
|
+
"additionalProperties": {
|
|
95
|
+
"oneOf": [
|
|
96
|
+
{
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"type": "number"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"type": "boolean"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"elementAria": {
|
|
109
|
+
"type": "string",
|
|
110
|
+
"description": "Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax."
|
|
43
111
|
}
|
|
44
112
|
}
|
|
45
113
|
},
|
|
@@ -52,7 +120,7 @@
|
|
|
52
120
|
"string": {
|
|
53
121
|
"title": "Click element (simple)",
|
|
54
122
|
"type": "string",
|
|
55
|
-
"description": "
|
|
123
|
+
"description": "Identifier for the element to click. Can be a selector, element text, ARIA name, ID, or test ID."
|
|
56
124
|
},
|
|
57
125
|
"button": {
|
|
58
126
|
"description": "Kind of click to perform.",
|
|
@@ -76,6 +144,31 @@
|
|
|
76
144
|
"required": [
|
|
77
145
|
"elementText"
|
|
78
146
|
]
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"required": [
|
|
150
|
+
"elementId"
|
|
151
|
+
]
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"required": [
|
|
155
|
+
"elementTestId"
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"required": [
|
|
160
|
+
"elementClass"
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"required": [
|
|
165
|
+
"elementAttribute"
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"required": [
|
|
170
|
+
"elementAria"
|
|
171
|
+
]
|
|
79
172
|
}
|
|
80
173
|
],
|
|
81
174
|
"properties": {
|
|
@@ -90,11 +183,54 @@
|
|
|
90
183
|
},
|
|
91
184
|
"elementText": {
|
|
92
185
|
"type": "string",
|
|
93
|
-
"description": "Display text of the element to click. If combined with
|
|
186
|
+
"description": "Display text of the element to click. If combined with other element finding fields, the element must match all specified criteria."
|
|
94
187
|
},
|
|
95
188
|
"selector": {
|
|
96
189
|
"type": "string",
|
|
97
|
-
"description": "Selector of the element to click. If combined with
|
|
190
|
+
"description": "Selector of the element to click. If combined with other element finding fields, the element must match all specified criteria."
|
|
191
|
+
},
|
|
192
|
+
"elementId": {
|
|
193
|
+
"type": "string",
|
|
194
|
+
"description": "ID attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
195
|
+
},
|
|
196
|
+
"elementTestId": {
|
|
197
|
+
"type": "string",
|
|
198
|
+
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
199
|
+
},
|
|
200
|
+
"elementClass": {
|
|
201
|
+
"oneOf": [
|
|
202
|
+
{
|
|
203
|
+
"type": "string"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"type": "array",
|
|
207
|
+
"items": {
|
|
208
|
+
"type": "string"
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"description": "Class or array of classes that the element must have. Each class supports exact match or regex pattern using /pattern/ syntax. Element must have all specified classes."
|
|
213
|
+
},
|
|
214
|
+
"elementAttribute": {
|
|
215
|
+
"type": "object",
|
|
216
|
+
"description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
|
|
217
|
+
"additionalProperties": {
|
|
218
|
+
"oneOf": [
|
|
219
|
+
{
|
|
220
|
+
"type": "string"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"type": "number"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"type": "boolean"
|
|
227
|
+
}
|
|
228
|
+
]
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"elementAria": {
|
|
232
|
+
"type": "string",
|
|
233
|
+
"description": "Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax."
|
|
98
234
|
}
|
|
99
235
|
}
|
|
100
236
|
}
|