@types/k6 0.47.3 → 0.49.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.
- k6/README.md +3 -3
- k6/crypto.d.ts +28 -28
- k6/data.d.ts +3 -3
- k6/encoding.d.ts +7 -7
- k6/execution.d.ts +2 -2
- k6/experimental/browser.d.ts +172 -88
- k6/experimental/fs.d.ts +102 -0
- k6/experimental/grpc.d.ts +8 -2
- k6/experimental/redis.d.ts +298 -90
- k6/experimental/tracing.d.ts +3 -3
- k6/experimental/webcrypto.d.ts +1 -1
- k6/experimental/websockets.d.ts +13 -13
- k6/global.d.ts +5 -5
- k6/html.d.ts +99 -99
- k6/http.d.ts +42 -42
- k6/index.d.ts +7 -6
- k6/metrics.d.ts +5 -5
- k6/net/grpc.d.ts +60 -2
- k6/options.d.ts +16 -16
- k6/package.json +8 -3
- k6/ws.d.ts +12 -12
k6/html.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* HTML parsing and access.
|
|
3
|
-
* https://
|
|
3
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
// === Main ===
|
|
@@ -18,14 +18,14 @@ export function parseHTML(html: string): Selection;
|
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* Represents a set of nodes in a DOM tree.
|
|
21
|
-
* https://
|
|
21
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/
|
|
22
22
|
*/
|
|
23
23
|
export abstract class Selection {
|
|
24
24
|
protected __brand: never;
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* Get the value of an attribute for the first element in the Selection.
|
|
28
|
-
* https://
|
|
28
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-attr/
|
|
29
29
|
* @param name - Name of attribute to get.
|
|
30
30
|
* @returns Attribute value.
|
|
31
31
|
*/
|
|
@@ -34,7 +34,7 @@ export abstract class Selection {
|
|
|
34
34
|
/**
|
|
35
35
|
* Get the children of each element in the set of matched elements,
|
|
36
36
|
* optionally filtered by a selector.
|
|
37
|
-
* https://
|
|
37
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-children/
|
|
38
38
|
* @param selector - Selector expression.
|
|
39
39
|
* @returns Selected children.
|
|
40
40
|
*/
|
|
@@ -44,7 +44,7 @@ export abstract class Selection {
|
|
|
44
44
|
* For each element in the set, get the first element that matches the
|
|
45
45
|
* selector by testing the element itself and traversing up through its
|
|
46
46
|
* ancestors in the DOM tree.
|
|
47
|
-
* https://
|
|
47
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-closest/
|
|
48
48
|
* @param selector - Selector expression.
|
|
49
49
|
* @returns Selected nodes.
|
|
50
50
|
*/
|
|
@@ -53,7 +53,7 @@ export abstract class Selection {
|
|
|
53
53
|
/**
|
|
54
54
|
* Get the children of each element in the set of matched elements,
|
|
55
55
|
* including text and comment nodes.
|
|
56
|
-
* https://
|
|
56
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-contents/
|
|
57
57
|
* @returns Selected nodes.
|
|
58
58
|
*/
|
|
59
59
|
contents(): Selection;
|
|
@@ -61,7 +61,7 @@ export abstract class Selection {
|
|
|
61
61
|
/**
|
|
62
62
|
* Return the value at the named data store for the first element in the
|
|
63
63
|
* set of matched elements.
|
|
64
|
-
* https://
|
|
64
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-data/
|
|
65
65
|
* @param key - A string naming the piece of data to set.\
|
|
66
66
|
* @returns The value at the named data store.
|
|
67
67
|
*/
|
|
@@ -70,14 +70,14 @@ export abstract class Selection {
|
|
|
70
70
|
/**
|
|
71
71
|
* Iterate over a Selection (k6/html), executing a function for each
|
|
72
72
|
* matched element.
|
|
73
|
-
* https://
|
|
73
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-each/
|
|
74
74
|
* @param handler - Logic to execute for each element.
|
|
75
75
|
*/
|
|
76
76
|
each(handler: Handler): void;
|
|
77
77
|
|
|
78
78
|
/**
|
|
79
79
|
* Reduce the set of matched elements to the one at the specified index.
|
|
80
|
-
* https://
|
|
80
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-eq/
|
|
81
81
|
* @param index - An integer indicating the 0-based position of the element.
|
|
82
82
|
* @returns Unary set of selected element.
|
|
83
83
|
*/
|
|
@@ -86,7 +86,7 @@ export abstract class Selection {
|
|
|
86
86
|
/**
|
|
87
87
|
* Reduce the set of matched elements to those that match the selector
|
|
88
88
|
* or pass the function's test.
|
|
89
|
-
* https://
|
|
89
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-filter/
|
|
90
90
|
* @param selector - Selector expression.
|
|
91
91
|
* @returns Selected elements.
|
|
92
92
|
*/
|
|
@@ -95,7 +95,7 @@ export abstract class Selection {
|
|
|
95
95
|
/**
|
|
96
96
|
* Reduce the set of matched elements to those that match the selector
|
|
97
97
|
* or pass the function's test.
|
|
98
|
-
* https://
|
|
98
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-filter/
|
|
99
99
|
* @param selector - A function used as a test for each element in the set.
|
|
100
100
|
* @returns Selected elements.
|
|
101
101
|
*/
|
|
@@ -104,7 +104,7 @@ export abstract class Selection {
|
|
|
104
104
|
/**
|
|
105
105
|
* Reduce the set of matched elements to those that match the selector
|
|
106
106
|
* or pass the function's test.
|
|
107
|
-
* https://
|
|
107
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-filter/
|
|
108
108
|
* @param selector - A selection to match elements against.
|
|
109
109
|
* @returns Selected elements.
|
|
110
110
|
*/
|
|
@@ -112,7 +112,7 @@ export abstract class Selection {
|
|
|
112
112
|
|
|
113
113
|
/**
|
|
114
114
|
* Find the selection descendants, filtered by a selector.
|
|
115
|
-
* https://
|
|
115
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-find/
|
|
116
116
|
* @param selector - Selector expression.
|
|
117
117
|
* @returns Selected elements.
|
|
118
118
|
*/
|
|
@@ -120,14 +120,14 @@ export abstract class Selection {
|
|
|
120
120
|
|
|
121
121
|
/**
|
|
122
122
|
* Reduce the set of matched elements to the first.
|
|
123
|
-
* https://
|
|
123
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-first/
|
|
124
124
|
* @returns Unary set of first element.
|
|
125
125
|
*/
|
|
126
126
|
first(): Selection;
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
129
|
* Retrieve the element matched by the selector.
|
|
130
|
-
* https://
|
|
130
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-get/
|
|
131
131
|
* @param index - A zero-based integer indicating which element to retrieve.
|
|
132
132
|
* @returns Selected element.
|
|
133
133
|
*/
|
|
@@ -136,7 +136,7 @@ export abstract class Selection {
|
|
|
136
136
|
/**
|
|
137
137
|
* Reduce the set of matched elements to those that have a descendant that
|
|
138
138
|
* matches the selector.
|
|
139
|
-
* https://
|
|
139
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-has/
|
|
140
140
|
* @param selector - Selector expression.
|
|
141
141
|
* @returns Selected elements.
|
|
142
142
|
*/
|
|
@@ -144,7 +144,7 @@ export abstract class Selection {
|
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
146
|
* Get the HTML contents of the first element.
|
|
147
|
-
* https://
|
|
147
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-html/
|
|
148
148
|
* @returns The HTML content of the first element.
|
|
149
149
|
*/
|
|
150
150
|
html(): string | undefined;
|
|
@@ -153,7 +153,7 @@ export abstract class Selection {
|
|
|
153
153
|
* Check the current matched set of elements against a selector or element
|
|
154
154
|
* and return true if at least one of these elements matches the given
|
|
155
155
|
* arguments.
|
|
156
|
-
* https://
|
|
156
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-is/
|
|
157
157
|
* @param selector - Selector expression.
|
|
158
158
|
* @returns Whether selector matched at least one element.
|
|
159
159
|
*/
|
|
@@ -163,7 +163,7 @@ export abstract class Selection {
|
|
|
163
163
|
* Check the current matched set of elements against a selector or element
|
|
164
164
|
* and return true if at least one of these elements matches the given
|
|
165
165
|
* arguments.
|
|
166
|
-
* https://
|
|
166
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-is/
|
|
167
167
|
* @param selector - A function used as a test for each element in the set.
|
|
168
168
|
* @returns Whether selector matched at least one element.
|
|
169
169
|
*/
|
|
@@ -173,7 +173,7 @@ export abstract class Selection {
|
|
|
173
173
|
* Check the current matched set of elements against a selector or element
|
|
174
174
|
* and return true if at least one of these elements matches the given
|
|
175
175
|
* arguments.
|
|
176
|
-
* https://
|
|
176
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-is/
|
|
177
177
|
* @param selector - A selection to match against.
|
|
178
178
|
* @returns Whether selector matched at least one element.
|
|
179
179
|
*/
|
|
@@ -181,7 +181,7 @@ export abstract class Selection {
|
|
|
181
181
|
|
|
182
182
|
/**
|
|
183
183
|
* Reduce the set of matched elements to the final one.
|
|
184
|
-
* https://
|
|
184
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-last/
|
|
185
185
|
* @returns Unary set of last element.
|
|
186
186
|
*/
|
|
187
187
|
last(): Selection;
|
|
@@ -189,7 +189,7 @@ export abstract class Selection {
|
|
|
189
189
|
/**
|
|
190
190
|
* Pass each element in the current matched set through a function,
|
|
191
191
|
* producing a new Array containing the return values.
|
|
192
|
-
* https://
|
|
192
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-map/
|
|
193
193
|
* @param mapper - Procedure to execute on each element.
|
|
194
194
|
* @returns Mapper return values.
|
|
195
195
|
*/
|
|
@@ -197,7 +197,7 @@ export abstract class Selection {
|
|
|
197
197
|
|
|
198
198
|
/**
|
|
199
199
|
* Get the immediately following sibling of each element.
|
|
200
|
-
* https://
|
|
200
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-next/
|
|
201
201
|
* @param selector - Selector expression.
|
|
202
202
|
* @returns Selected elements.
|
|
203
203
|
*/
|
|
@@ -206,7 +206,7 @@ export abstract class Selection {
|
|
|
206
206
|
/**
|
|
207
207
|
* Get all following siblings of each element,
|
|
208
208
|
* optionally filtered by a selector.
|
|
209
|
-
* https://
|
|
209
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-nextall/
|
|
210
210
|
* @param selector - Selector expression.
|
|
211
211
|
* @returns Selected elements.
|
|
212
212
|
*/
|
|
@@ -215,7 +215,7 @@ export abstract class Selection {
|
|
|
215
215
|
/**
|
|
216
216
|
* Get all following siblings of each element up to but not including the
|
|
217
217
|
* element matched by the selector.
|
|
218
|
-
* https://
|
|
218
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-nextuntil/
|
|
219
219
|
* @param selector - Selector expression.
|
|
220
220
|
* @returns Selected elements.
|
|
221
221
|
*/
|
|
@@ -223,7 +223,7 @@ export abstract class Selection {
|
|
|
223
223
|
|
|
224
224
|
/**
|
|
225
225
|
* Remove elements.
|
|
226
|
-
* https://
|
|
226
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/
|
|
227
227
|
* @param selector - Selector expression.
|
|
228
228
|
* @returns Selection with matched elements removed.
|
|
229
229
|
*/
|
|
@@ -231,7 +231,7 @@ export abstract class Selection {
|
|
|
231
231
|
|
|
232
232
|
/**
|
|
233
233
|
* Remove elements.
|
|
234
|
-
* https://
|
|
234
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/
|
|
235
235
|
* @param selector - A function used as a test for each element in the set.
|
|
236
236
|
* @returns Selection with matched elements removed.
|
|
237
237
|
*/
|
|
@@ -239,7 +239,7 @@ export abstract class Selection {
|
|
|
239
239
|
|
|
240
240
|
/**
|
|
241
241
|
* Get the parent of each element, optionally filtered by a selector.
|
|
242
|
-
* https://
|
|
242
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-parent/
|
|
243
243
|
* @param selector - Selector expression.
|
|
244
244
|
* @returns Selected elements.
|
|
245
245
|
*/
|
|
@@ -247,7 +247,7 @@ export abstract class Selection {
|
|
|
247
247
|
|
|
248
248
|
/**
|
|
249
249
|
* Get the ancestors of each element, optionally filtered by a selector.
|
|
250
|
-
* https://
|
|
250
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-parents/
|
|
251
251
|
* @param selector - Selector expression.
|
|
252
252
|
* @returns Selected elements.
|
|
253
253
|
*/
|
|
@@ -256,7 +256,7 @@ export abstract class Selection {
|
|
|
256
256
|
/**
|
|
257
257
|
* Get the ancestors of each element,
|
|
258
258
|
* up to but not including the element matched by the selector.
|
|
259
|
-
* https://
|
|
259
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-parentsuntil/
|
|
260
260
|
* @param selector - Selector expression.
|
|
261
261
|
* @returns Selected elements.
|
|
262
262
|
*/
|
|
@@ -264,7 +264,7 @@ export abstract class Selection {
|
|
|
264
264
|
|
|
265
265
|
/**
|
|
266
266
|
* Get the immediately preceding sibling of each element.
|
|
267
|
-
* https://
|
|
267
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-prev/
|
|
268
268
|
* @param selector - Selector expression.
|
|
269
269
|
* @returns Selected elements.
|
|
270
270
|
*/
|
|
@@ -273,7 +273,7 @@ export abstract class Selection {
|
|
|
273
273
|
/**
|
|
274
274
|
* Get all preceding siblings of each element,
|
|
275
275
|
* optionally filtered by a selector.
|
|
276
|
-
* https://
|
|
276
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-prevall/
|
|
277
277
|
* @param selector - Selector expression.
|
|
278
278
|
* @returns Selected elements.
|
|
279
279
|
*/
|
|
@@ -282,7 +282,7 @@ export abstract class Selection {
|
|
|
282
282
|
/**
|
|
283
283
|
* Get all preceding siblings of each element
|
|
284
284
|
* up to but not including the element matched by the selector.
|
|
285
|
-
* https://
|
|
285
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-prevuntil/
|
|
286
286
|
* @param selector - Selector expression.
|
|
287
287
|
* @returns Selected elements.
|
|
288
288
|
*/
|
|
@@ -291,7 +291,7 @@ export abstract class Selection {
|
|
|
291
291
|
/**
|
|
292
292
|
* Encode a set of form elements as a string
|
|
293
293
|
* in standard URL-encoded notation for submission.
|
|
294
|
-
* https://
|
|
294
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-serialize/
|
|
295
295
|
* @returns URL-encoded representation of the form or form elements.
|
|
296
296
|
*/
|
|
297
297
|
serialize(): string;
|
|
@@ -299,7 +299,7 @@ export abstract class Selection {
|
|
|
299
299
|
/**
|
|
300
300
|
* Encode a set of form elements as an array of name-value objects.
|
|
301
301
|
* `[{ name: "name", value: "value" }, ... ]`
|
|
302
|
-
* https://
|
|
302
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-serializearray/
|
|
303
303
|
* @returns Array of name value objects of the form or form elements.
|
|
304
304
|
*/
|
|
305
305
|
serializeArray(): FormValue[];
|
|
@@ -307,7 +307,7 @@ export abstract class Selection {
|
|
|
307
307
|
/**
|
|
308
308
|
* Encode a set of form elements as an object.
|
|
309
309
|
* `{ inputName: "value", checkboxName: "value", ... }`
|
|
310
|
-
* https://
|
|
310
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-serializeobject/
|
|
311
311
|
* @returns Object representation of the form or form elements,
|
|
312
312
|
* key is field name and value is field value.
|
|
313
313
|
*/
|
|
@@ -315,14 +315,14 @@ export abstract class Selection {
|
|
|
315
315
|
|
|
316
316
|
/**
|
|
317
317
|
* Return the number of elements in the selection.
|
|
318
|
-
* https://
|
|
318
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-size/
|
|
319
319
|
* @returns The number of elements in the selection.
|
|
320
320
|
*/
|
|
321
321
|
size(): number;
|
|
322
322
|
|
|
323
323
|
/**
|
|
324
324
|
* Reduce the set of elements to a subset specified by a range of indices.
|
|
325
|
-
* https://
|
|
325
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-slice/
|
|
326
326
|
* @param start - An integer indicating the 0-based position at which the
|
|
327
327
|
* elements begin to be selected.
|
|
328
328
|
* @param end - An integer indicating the 0-based position at which the
|
|
@@ -333,21 +333,21 @@ export abstract class Selection {
|
|
|
333
333
|
|
|
334
334
|
/**
|
|
335
335
|
* Get the text content of the selection.
|
|
336
|
-
* https://
|
|
336
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-text/
|
|
337
337
|
* @returns Text content.
|
|
338
338
|
*/
|
|
339
339
|
text(): string;
|
|
340
340
|
|
|
341
341
|
/**
|
|
342
342
|
* Retrieve all the elements contained in the selection as an array.
|
|
343
|
-
* https://
|
|
343
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-toarray/
|
|
344
344
|
* @returns A unary selection of each element.
|
|
345
345
|
*/
|
|
346
346
|
toArray(): Selection[];
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* Get the current value of the first element.
|
|
350
|
-
* https://
|
|
350
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/selection/selection-val/
|
|
351
351
|
* @returns The value of the first element.
|
|
352
352
|
*/
|
|
353
353
|
val(): string | undefined;
|
|
@@ -446,7 +446,7 @@ export enum NodeType {
|
|
|
446
446
|
|
|
447
447
|
/**
|
|
448
448
|
* HTML node.
|
|
449
|
-
* https://
|
|
449
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
450
450
|
*/
|
|
451
451
|
export abstract class Element {
|
|
452
452
|
protected __brand: never;
|
|
@@ -621,7 +621,7 @@ export abstract class Element {
|
|
|
621
621
|
|
|
622
622
|
/**
|
|
623
623
|
* HTML <a> element.
|
|
624
|
-
* https://
|
|
624
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
625
625
|
*/
|
|
626
626
|
export abstract class AnchorElement extends HrefElement {
|
|
627
627
|
protected __brand: never;
|
|
@@ -629,7 +629,7 @@ export abstract class AnchorElement extends HrefElement {
|
|
|
629
629
|
|
|
630
630
|
/**
|
|
631
631
|
* HTML <area> element.
|
|
632
|
-
* https://
|
|
632
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
633
633
|
*/
|
|
634
634
|
export abstract class AreaElement extends HrefElement {
|
|
635
635
|
protected __brand: never;
|
|
@@ -637,7 +637,7 @@ export abstract class AreaElement extends HrefElement {
|
|
|
637
637
|
|
|
638
638
|
/**
|
|
639
639
|
* HTML <audio> element.
|
|
640
|
-
* https://
|
|
640
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
641
641
|
*/
|
|
642
642
|
export abstract class AudioElement extends MediaElement {
|
|
643
643
|
protected __brand: never;
|
|
@@ -645,7 +645,7 @@ export abstract class AudioElement extends MediaElement {
|
|
|
645
645
|
|
|
646
646
|
/**
|
|
647
647
|
* HTML <base> element.
|
|
648
|
-
* https://
|
|
648
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
649
649
|
*/
|
|
650
650
|
export abstract class BaseElement extends Element {
|
|
651
651
|
protected __brand: never;
|
|
@@ -653,7 +653,7 @@ export abstract class BaseElement extends Element {
|
|
|
653
653
|
|
|
654
654
|
/**
|
|
655
655
|
* HTML <button> element.
|
|
656
|
-
* https://
|
|
656
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
657
657
|
*/
|
|
658
658
|
export abstract class ButtonElement extends FormFieldElement {
|
|
659
659
|
protected __brand: never;
|
|
@@ -664,7 +664,7 @@ export abstract class ButtonElement extends FormFieldElement {
|
|
|
664
664
|
|
|
665
665
|
/**
|
|
666
666
|
* HTML <canvas> element.
|
|
667
|
-
* https://
|
|
667
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
668
668
|
*/
|
|
669
669
|
export abstract class CanvasElement extends Element {
|
|
670
670
|
protected __brand: never;
|
|
@@ -678,7 +678,7 @@ export abstract class CanvasElement extends Element {
|
|
|
678
678
|
|
|
679
679
|
/**
|
|
680
680
|
* HTML <data> element.
|
|
681
|
-
* https://
|
|
681
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
682
682
|
*/
|
|
683
683
|
export abstract class DataElement extends Element {
|
|
684
684
|
protected __brand: never;
|
|
@@ -686,7 +686,7 @@ export abstract class DataElement extends Element {
|
|
|
686
686
|
|
|
687
687
|
/**
|
|
688
688
|
* HTML <datalist> element.
|
|
689
|
-
* https://
|
|
689
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
690
690
|
*/
|
|
691
691
|
export abstract class DataListElement extends Element {
|
|
692
692
|
protected __brand: never;
|
|
@@ -697,7 +697,7 @@ export abstract class DataListElement extends Element {
|
|
|
697
697
|
|
|
698
698
|
/**
|
|
699
699
|
* HTML <del> element.
|
|
700
|
-
* https://
|
|
700
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
701
701
|
*/
|
|
702
702
|
export abstract class DelElement extends ModElement {
|
|
703
703
|
protected __brand: never;
|
|
@@ -705,7 +705,7 @@ export abstract class DelElement extends ModElement {
|
|
|
705
705
|
|
|
706
706
|
/**
|
|
707
707
|
* HTML <embed> element.
|
|
708
|
-
* https://
|
|
708
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
709
709
|
*/
|
|
710
710
|
export abstract class EmbedElement extends Element {
|
|
711
711
|
protected __brand: never;
|
|
@@ -713,7 +713,7 @@ export abstract class EmbedElement extends Element {
|
|
|
713
713
|
|
|
714
714
|
/**
|
|
715
715
|
* HTML <fieldset> element.
|
|
716
|
-
* https://
|
|
716
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
717
717
|
*/
|
|
718
718
|
export abstract class FieldSetElement extends Element {
|
|
719
719
|
protected __brand: never;
|
|
@@ -733,7 +733,7 @@ export abstract class FieldSetElement extends Element {
|
|
|
733
733
|
|
|
734
734
|
/**
|
|
735
735
|
* HTML <form> element.
|
|
736
|
-
* https://
|
|
736
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
737
737
|
*/
|
|
738
738
|
export abstract class FormElement extends Element {
|
|
739
739
|
protected __brand: never;
|
|
@@ -750,7 +750,7 @@ export abstract class FormElement extends Element {
|
|
|
750
750
|
|
|
751
751
|
/**
|
|
752
752
|
* HTML form field element.
|
|
753
|
-
* https://
|
|
753
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
754
754
|
*/
|
|
755
755
|
export abstract class FormFieldElement extends Element {
|
|
756
756
|
protected __brand: never;
|
|
@@ -782,7 +782,7 @@ export abstract class FormFieldElement extends Element {
|
|
|
782
782
|
|
|
783
783
|
/**
|
|
784
784
|
* HTML hyperlink element.
|
|
785
|
-
* https://
|
|
785
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
786
786
|
*/
|
|
787
787
|
export abstract class HrefElement extends Element {
|
|
788
788
|
protected __brand: never;
|
|
@@ -826,7 +826,7 @@ export abstract class HrefElement extends Element {
|
|
|
826
826
|
|
|
827
827
|
/**
|
|
828
828
|
* HTML <iframe> element.
|
|
829
|
-
* https://
|
|
829
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
830
830
|
*/
|
|
831
831
|
export abstract class IFrameElement extends Element {
|
|
832
832
|
protected __brand: never;
|
|
@@ -834,7 +834,7 @@ export abstract class IFrameElement extends Element {
|
|
|
834
834
|
|
|
835
835
|
/**
|
|
836
836
|
* HTML <img> element.
|
|
837
|
-
* https://
|
|
837
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
838
838
|
*/
|
|
839
839
|
export abstract class ImageElement extends Element {
|
|
840
840
|
protected __brand: never;
|
|
@@ -842,7 +842,7 @@ export abstract class ImageElement extends Element {
|
|
|
842
842
|
|
|
843
843
|
/**
|
|
844
844
|
* HTML <input> element.
|
|
845
|
-
* https://
|
|
845
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
846
846
|
*/
|
|
847
847
|
export abstract class InputElement extends FormFieldElement {
|
|
848
848
|
protected __brand: never;
|
|
@@ -853,7 +853,7 @@ export abstract class InputElement extends FormFieldElement {
|
|
|
853
853
|
|
|
854
854
|
/**
|
|
855
855
|
* HTML <ins> element.
|
|
856
|
-
* https://
|
|
856
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
857
857
|
*/
|
|
858
858
|
export abstract class InsElement extends ModElement {
|
|
859
859
|
protected __brand: never;
|
|
@@ -861,7 +861,7 @@ export abstract class InsElement extends ModElement {
|
|
|
861
861
|
|
|
862
862
|
/**
|
|
863
863
|
* HTML <keygen> element.
|
|
864
|
-
* https://
|
|
864
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
865
865
|
*/
|
|
866
866
|
export abstract class KeygenElement extends Element {
|
|
867
867
|
protected __brand: never;
|
|
@@ -875,7 +875,7 @@ export abstract class KeygenElement extends Element {
|
|
|
875
875
|
|
|
876
876
|
/**
|
|
877
877
|
* HTML <label> element.
|
|
878
|
-
* https://
|
|
878
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
879
879
|
*/
|
|
880
880
|
export abstract class LabelElement extends Element {
|
|
881
881
|
protected __brand: never;
|
|
@@ -889,7 +889,7 @@ export abstract class LabelElement extends Element {
|
|
|
889
889
|
|
|
890
890
|
/**
|
|
891
891
|
* HTML <legend> element.
|
|
892
|
-
* https://
|
|
892
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
893
893
|
*/
|
|
894
894
|
export abstract class LegendElement extends Element {
|
|
895
895
|
protected __brand: never;
|
|
@@ -900,7 +900,7 @@ export abstract class LegendElement extends Element {
|
|
|
900
900
|
|
|
901
901
|
/**
|
|
902
902
|
* HTML <li> element.
|
|
903
|
-
* https://
|
|
903
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
904
904
|
*/
|
|
905
905
|
export abstract class LiElement extends Element {
|
|
906
906
|
protected __brand: never;
|
|
@@ -908,7 +908,7 @@ export abstract class LiElement extends Element {
|
|
|
908
908
|
|
|
909
909
|
/**
|
|
910
910
|
* HTML <link> element.
|
|
911
|
-
* https://
|
|
911
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
912
912
|
*/
|
|
913
913
|
export abstract class LinkElement extends Element {
|
|
914
914
|
protected __brand: never;
|
|
@@ -919,7 +919,7 @@ export abstract class LinkElement extends Element {
|
|
|
919
919
|
|
|
920
920
|
/**
|
|
921
921
|
* HTML <map> element.
|
|
922
|
-
* https://
|
|
922
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
923
923
|
*/
|
|
924
924
|
export abstract class MapElement extends Element {
|
|
925
925
|
protected __brand: never;
|
|
@@ -933,7 +933,7 @@ export abstract class MapElement extends Element {
|
|
|
933
933
|
|
|
934
934
|
/**
|
|
935
935
|
* HTML media element.
|
|
936
|
-
* https://
|
|
936
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
937
937
|
*/
|
|
938
938
|
export abstract class MediaElement extends Element {
|
|
939
939
|
protected __brand: never;
|
|
@@ -944,7 +944,7 @@ export abstract class MediaElement extends Element {
|
|
|
944
944
|
|
|
945
945
|
/**
|
|
946
946
|
* HTML <meta> element.
|
|
947
|
-
* https://
|
|
947
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
948
948
|
*/
|
|
949
949
|
export abstract class MetaElement extends Element {
|
|
950
950
|
protected __brand: never;
|
|
@@ -952,7 +952,7 @@ export abstract class MetaElement extends Element {
|
|
|
952
952
|
|
|
953
953
|
/**
|
|
954
954
|
* HTML <meter> element.
|
|
955
|
-
* https://
|
|
955
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
956
956
|
*/
|
|
957
957
|
export abstract class MeterElement extends Element {
|
|
958
958
|
protected __brand: never;
|
|
@@ -963,7 +963,7 @@ export abstract class MeterElement extends Element {
|
|
|
963
963
|
|
|
964
964
|
/**
|
|
965
965
|
* HTML modification element.
|
|
966
|
-
* https://
|
|
966
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
967
967
|
*/
|
|
968
968
|
export abstract class ModElement extends Element {
|
|
969
969
|
protected __brand: never;
|
|
@@ -971,7 +971,7 @@ export abstract class ModElement extends Element {
|
|
|
971
971
|
|
|
972
972
|
/**
|
|
973
973
|
* HTML <object> element.
|
|
974
|
-
* https://
|
|
974
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
975
975
|
*/
|
|
976
976
|
export abstract class ObjectElement extends Element {
|
|
977
977
|
protected __brand: never;
|
|
@@ -982,7 +982,7 @@ export abstract class ObjectElement extends Element {
|
|
|
982
982
|
|
|
983
983
|
/**
|
|
984
984
|
* HTML <ol> element.
|
|
985
|
-
* https://
|
|
985
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
986
986
|
*/
|
|
987
987
|
export abstract class OListElement extends Element {
|
|
988
988
|
protected __brand: never;
|
|
@@ -990,7 +990,7 @@ export abstract class OListElement extends Element {
|
|
|
990
990
|
|
|
991
991
|
/**
|
|
992
992
|
* HTML <optgroup> element.
|
|
993
|
-
* https://
|
|
993
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
994
994
|
*/
|
|
995
995
|
export abstract class OptGroupElement extends Element {
|
|
996
996
|
protected __brand: never;
|
|
@@ -998,7 +998,7 @@ export abstract class OptGroupElement extends Element {
|
|
|
998
998
|
|
|
999
999
|
/**
|
|
1000
1000
|
* HTML <option> element.
|
|
1001
|
-
* https://
|
|
1001
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1002
1002
|
*/
|
|
1003
1003
|
export abstract class OptionElement extends Element {
|
|
1004
1004
|
protected __brand: never;
|
|
@@ -1024,7 +1024,7 @@ export abstract class OptionElement extends Element {
|
|
|
1024
1024
|
|
|
1025
1025
|
/**
|
|
1026
1026
|
* HTML <output> element.
|
|
1027
|
-
* https://
|
|
1027
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1028
1028
|
*/
|
|
1029
1029
|
export abstract class OutputElement extends Element {
|
|
1030
1030
|
protected __brand: never;
|
|
@@ -1044,7 +1044,7 @@ export abstract class OutputElement extends Element {
|
|
|
1044
1044
|
|
|
1045
1045
|
/**
|
|
1046
1046
|
* HTML <param> element.
|
|
1047
|
-
* https://
|
|
1047
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1048
1048
|
*/
|
|
1049
1049
|
export abstract class ParamElement extends Element {
|
|
1050
1050
|
protected __brand: never;
|
|
@@ -1052,7 +1052,7 @@ export abstract class ParamElement extends Element {
|
|
|
1052
1052
|
|
|
1053
1053
|
/**
|
|
1054
1054
|
* HTML <pre> element.
|
|
1055
|
-
* https://
|
|
1055
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1056
1056
|
*/
|
|
1057
1057
|
export abstract class PreElement extends Element {
|
|
1058
1058
|
protected __brand: never;
|
|
@@ -1060,7 +1060,7 @@ export abstract class PreElement extends Element {
|
|
|
1060
1060
|
|
|
1061
1061
|
/**
|
|
1062
1062
|
* HTML <progress> element.
|
|
1063
|
-
* https://
|
|
1063
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1064
1064
|
*/
|
|
1065
1065
|
export abstract class ProgressElement extends Element {
|
|
1066
1066
|
protected __brand: never;
|
|
@@ -1080,7 +1080,7 @@ export abstract class ProgressElement extends Element {
|
|
|
1080
1080
|
|
|
1081
1081
|
/**
|
|
1082
1082
|
* HTML <q> element.
|
|
1083
|
-
* https://
|
|
1083
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1084
1084
|
*/
|
|
1085
1085
|
export abstract class QuoteElement extends Element {
|
|
1086
1086
|
protected __brand: never;
|
|
@@ -1088,7 +1088,7 @@ export abstract class QuoteElement extends Element {
|
|
|
1088
1088
|
|
|
1089
1089
|
/**
|
|
1090
1090
|
* HTML <script> element.
|
|
1091
|
-
* https://
|
|
1091
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1092
1092
|
*/
|
|
1093
1093
|
export abstract class ScriptElement extends Element {
|
|
1094
1094
|
protected __brand: never;
|
|
@@ -1099,7 +1099,7 @@ export abstract class ScriptElement extends Element {
|
|
|
1099
1099
|
|
|
1100
1100
|
/**
|
|
1101
1101
|
* HTML <select> element.
|
|
1102
|
-
* https://
|
|
1102
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1103
1103
|
*/
|
|
1104
1104
|
export abstract class SelectElement extends Element {
|
|
1105
1105
|
protected __brand: never;
|
|
@@ -1134,7 +1134,7 @@ export abstract class SelectElement extends Element {
|
|
|
1134
1134
|
|
|
1135
1135
|
/**
|
|
1136
1136
|
* HTML <source> element.
|
|
1137
|
-
* https://
|
|
1137
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1138
1138
|
*/
|
|
1139
1139
|
export abstract class SourceElement extends Element {
|
|
1140
1140
|
protected __brand: never;
|
|
@@ -1142,7 +1142,7 @@ export abstract class SourceElement extends Element {
|
|
|
1142
1142
|
|
|
1143
1143
|
/**
|
|
1144
1144
|
* HTML <style> element.
|
|
1145
|
-
* https://
|
|
1145
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1146
1146
|
*/
|
|
1147
1147
|
export abstract class StyleElement extends Element {
|
|
1148
1148
|
protected __brand: never;
|
|
@@ -1153,7 +1153,7 @@ export abstract class StyleElement extends Element {
|
|
|
1153
1153
|
|
|
1154
1154
|
/**
|
|
1155
1155
|
* HTML <tbody> element.
|
|
1156
|
-
* https://
|
|
1156
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1157
1157
|
*/
|
|
1158
1158
|
export abstract class TableBodyElement extends TableSectionElement {
|
|
1159
1159
|
protected __brand: never;
|
|
@@ -1161,7 +1161,7 @@ export abstract class TableBodyElement extends TableSectionElement {
|
|
|
1161
1161
|
|
|
1162
1162
|
/**
|
|
1163
1163
|
* HTML table cell element.
|
|
1164
|
-
* https://
|
|
1164
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1165
1165
|
*/
|
|
1166
1166
|
export abstract class TableCellElement extends Element {
|
|
1167
1167
|
protected __brand: never;
|
|
@@ -1172,7 +1172,7 @@ export abstract class TableCellElement extends Element {
|
|
|
1172
1172
|
|
|
1173
1173
|
/**
|
|
1174
1174
|
* HTML <col> element.
|
|
1175
|
-
* https://
|
|
1175
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1176
1176
|
*/
|
|
1177
1177
|
export abstract class TableColElement extends Element {
|
|
1178
1178
|
protected __brand: never;
|
|
@@ -1183,7 +1183,7 @@ export abstract class TableColElement extends Element {
|
|
|
1183
1183
|
|
|
1184
1184
|
/**
|
|
1185
1185
|
* HTML <td> element.
|
|
1186
|
-
* https://
|
|
1186
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1187
1187
|
*/
|
|
1188
1188
|
export abstract class TableDataCellElement extends TableCellElement {
|
|
1189
1189
|
protected __brand: never;
|
|
@@ -1191,7 +1191,7 @@ export abstract class TableDataCellElement extends TableCellElement {
|
|
|
1191
1191
|
|
|
1192
1192
|
/**
|
|
1193
1193
|
* HTML <table> element.
|
|
1194
|
-
* https://
|
|
1194
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1195
1195
|
*/
|
|
1196
1196
|
export abstract class TableElement extends Element {
|
|
1197
1197
|
protected __brand: never;
|
|
@@ -1214,7 +1214,7 @@ export abstract class TableElement extends Element {
|
|
|
1214
1214
|
|
|
1215
1215
|
/**
|
|
1216
1216
|
* HTML <tfoot> element.
|
|
1217
|
-
* https://
|
|
1217
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1218
1218
|
*/
|
|
1219
1219
|
export abstract class TableFootElement extends TableSectionElement {
|
|
1220
1220
|
protected __brand: never;
|
|
@@ -1222,7 +1222,7 @@ export abstract class TableFootElement extends TableSectionElement {
|
|
|
1222
1222
|
|
|
1223
1223
|
/**
|
|
1224
1224
|
* HTML <thead> element.
|
|
1225
|
-
* https://
|
|
1225
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1226
1226
|
*/
|
|
1227
1227
|
export abstract class TableHeadElement extends TableSectionElement {
|
|
1228
1228
|
protected __brand: never;
|
|
@@ -1230,7 +1230,7 @@ export abstract class TableHeadElement extends TableSectionElement {
|
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
1232
|
* HTML <th> element.
|
|
1233
|
-
* https://
|
|
1233
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1234
1234
|
*/
|
|
1235
1235
|
export abstract class TableHeaderCellElement extends TableCellElement {
|
|
1236
1236
|
protected __brand: never;
|
|
@@ -1238,7 +1238,7 @@ export abstract class TableHeaderCellElement extends TableCellElement {
|
|
|
1238
1238
|
|
|
1239
1239
|
/**
|
|
1240
1240
|
* HTML <tr> element.
|
|
1241
|
-
* https://
|
|
1241
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1242
1242
|
*/
|
|
1243
1243
|
export abstract class TableRowElement extends Element {
|
|
1244
1244
|
protected __brand: never;
|
|
@@ -1255,7 +1255,7 @@ export abstract class TableRowElement extends Element {
|
|
|
1255
1255
|
|
|
1256
1256
|
/**
|
|
1257
1257
|
* HTML table section element.
|
|
1258
|
-
* https://
|
|
1258
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1259
1259
|
*/
|
|
1260
1260
|
export abstract class TableSectionElement extends Element {
|
|
1261
1261
|
protected __brand: never;
|
|
@@ -1266,7 +1266,7 @@ export abstract class TableSectionElement extends Element {
|
|
|
1266
1266
|
|
|
1267
1267
|
/**
|
|
1268
1268
|
* HTML <textarea> element.
|
|
1269
|
-
* https://
|
|
1269
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1270
1270
|
*/
|
|
1271
1271
|
export abstract class TextAreaElement extends Element {
|
|
1272
1272
|
protected __brand: never;
|
|
@@ -1283,7 +1283,7 @@ export abstract class TextAreaElement extends Element {
|
|
|
1283
1283
|
|
|
1284
1284
|
/**
|
|
1285
1285
|
* HTML <time> element.
|
|
1286
|
-
* https://
|
|
1286
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1287
1287
|
*/
|
|
1288
1288
|
export abstract class TimeElement extends Element {
|
|
1289
1289
|
protected __brand: never;
|
|
@@ -1291,7 +1291,7 @@ export abstract class TimeElement extends Element {
|
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
1293
|
* HTML <title> element.
|
|
1294
|
-
* https://
|
|
1294
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1295
1295
|
*/
|
|
1296
1296
|
export abstract class TitleElement extends Element {
|
|
1297
1297
|
protected __brand: never;
|
|
@@ -1302,7 +1302,7 @@ export abstract class TitleElement extends Element {
|
|
|
1302
1302
|
|
|
1303
1303
|
/**
|
|
1304
1304
|
* HTML <track> element.
|
|
1305
|
-
* https://
|
|
1305
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1306
1306
|
*/
|
|
1307
1307
|
export abstract class TrackElement extends Element {
|
|
1308
1308
|
protected __brand: never;
|
|
@@ -1310,7 +1310,7 @@ export abstract class TrackElement extends Element {
|
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
1312
|
* HTML <ul> element.
|
|
1313
|
-
* https://
|
|
1313
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1314
1314
|
*/
|
|
1315
1315
|
export abstract class UListElement extends Element {
|
|
1316
1316
|
protected __brand: never;
|
|
@@ -1318,7 +1318,7 @@ export abstract class UListElement extends Element {
|
|
|
1318
1318
|
|
|
1319
1319
|
/**
|
|
1320
1320
|
* HTML <video> element.
|
|
1321
|
-
* https://
|
|
1321
|
+
* https://grafana.com/docs/k6/latest/javascript-api/k6-html/element/
|
|
1322
1322
|
*/
|
|
1323
1323
|
export abstract class VideoElement extends MediaElement {
|
|
1324
1324
|
protected __brand: never;
|