@instructure/ui-tabs 8.13.1-snapshot.9 → 8.14.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/CHANGELOG.md +4 -0
- package/es/Tabs/Panel/index.js +3 -5
- package/es/Tabs/Panel/props.js +0 -8
- package/es/Tabs/Tab/index.js +17 -21
- package/es/Tabs/TabsLocator.js +2 -1
- package/es/Tabs/index.js +14 -13
- package/es/Tabs/props.js +0 -32
- package/lib/Tabs/Panel/index.js +3 -5
- package/lib/Tabs/Panel/props.js +0 -8
- package/lib/Tabs/Tab/index.js +19 -21
- package/lib/Tabs/TabsLocator.js +2 -1
- package/lib/Tabs/index.js +14 -13
- package/lib/Tabs/props.js +0 -32
- package/package.json +21 -22
- package/src/Tabs/Panel/index.tsx +5 -9
- package/src/Tabs/Panel/props.ts +10 -10
- package/src/Tabs/Tab/index.tsx +15 -19
- package/src/Tabs/Tab/props.ts +10 -3
- package/src/Tabs/index.tsx +55 -92
- package/src/Tabs/props.ts +41 -32
- package/tsconfig.build.json +25 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/Tabs/Panel/index.d.ts +10 -12
- package/types/Tabs/Panel/index.d.ts.map +1 -1
- package/types/Tabs/Panel/props.d.ts +10 -3
- package/types/Tabs/Panel/props.d.ts.map +1 -1
- package/types/Tabs/Tab/index.d.ts +24 -19
- package/types/Tabs/Tab/index.d.ts.map +1 -1
- package/types/Tabs/Tab/props.d.ts +10 -3
- package/types/Tabs/Tab/props.d.ts.map +1 -1
- package/types/Tabs/TabsLocator.d.ts +381 -381
- package/types/Tabs/index.d.ts +38 -35
- package/types/Tabs/index.d.ts.map +1 -1
- package/types/Tabs/props.d.ts +40 -4
- package/types/Tabs/props.d.ts.map +1 -1
- package/LICENSE.md +0 -27
|
@@ -16,25 +16,15 @@ export declare const TabsLocator: {
|
|
|
16
16
|
toString: (maxLength?: number | undefined, options?: {
|
|
17
17
|
highlight: boolean;
|
|
18
18
|
} | undefined) => string;
|
|
19
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
20
|
-
children: (selector: string) => Element[];
|
|
21
|
-
title: () => string | null | undefined;
|
|
22
|
-
id: () => string;
|
|
23
|
-
tagName: () => string;
|
|
24
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
25
|
-
getBoundingClientRect: () => DOMRect;
|
|
26
|
-
matches: (selector: string | undefined) => boolean;
|
|
27
19
|
visible: () => boolean;
|
|
28
|
-
value: () => string | null;
|
|
29
|
-
disabled: () => string | null;
|
|
30
|
-
role: () => string | null;
|
|
31
|
-
label: () => string | null | undefined;
|
|
32
20
|
getId: () => string;
|
|
33
21
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
34
22
|
getOwnerDocument: () => Document;
|
|
35
23
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
36
24
|
getTagName: () => string;
|
|
25
|
+
tagName: () => string;
|
|
37
26
|
typeIn: (text: string) => Promise<void>;
|
|
27
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
38
28
|
getDOMNode: () => Element;
|
|
39
29
|
node: () => Element;
|
|
40
30
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -44,6 +34,7 @@ export declare const TabsLocator: {
|
|
|
44
34
|
getTextContent: () => string | null;
|
|
45
35
|
getParentNode: () => ParentNode | null;
|
|
46
36
|
parent: () => ParentNode | null;
|
|
37
|
+
getBoundingClientRect: () => DOMRect;
|
|
47
38
|
rect: () => DOMRect;
|
|
48
39
|
hasClass: (classname: string) => boolean;
|
|
49
40
|
containsFocus: () => boolean;
|
|
@@ -55,17 +46,25 @@ export declare const TabsLocator: {
|
|
|
55
46
|
exists: () => boolean;
|
|
56
47
|
text: () => string | null;
|
|
57
48
|
empty: () => boolean;
|
|
49
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
58
50
|
descendants: (selector: string) => Element[];
|
|
59
51
|
ancestors: (selector: string) => ParentNode[];
|
|
60
52
|
attribute: (qualifiedName: string) => string | null;
|
|
61
53
|
style: (property: string) => string;
|
|
62
54
|
classNames: () => string[];
|
|
55
|
+
id: () => string;
|
|
56
|
+
matches: (selector: string | undefined) => boolean;
|
|
63
57
|
checked: () => any;
|
|
64
58
|
selected: () => any;
|
|
59
|
+
disabled: () => string | null;
|
|
65
60
|
readonly: () => any;
|
|
61
|
+
role: () => string | null;
|
|
62
|
+
value: () => string | null;
|
|
63
|
+
label: () => string | null | undefined;
|
|
64
|
+
title: () => string | null | undefined;
|
|
65
|
+
children: (selector: string) => Element[];
|
|
66
66
|
parents: (selector: string) => ParentNode[];
|
|
67
67
|
} & {
|
|
68
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
69
68
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
70
69
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
71
70
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -103,6 +102,7 @@ export declare const TabsLocator: {
|
|
|
103
102
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
104
103
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
104
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
106
106
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
107
107
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
108
108
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -155,25 +155,15 @@ export declare const TabsLocator: {
|
|
|
155
155
|
toString: (maxLength?: number | undefined, options?: {
|
|
156
156
|
highlight: boolean;
|
|
157
157
|
} | undefined) => string;
|
|
158
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
159
|
-
children: (selector: string) => Element[];
|
|
160
|
-
title: () => string | null | undefined;
|
|
161
|
-
id: () => string;
|
|
162
|
-
tagName: () => string;
|
|
163
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
164
|
-
getBoundingClientRect: () => DOMRect;
|
|
165
|
-
matches: (selector: string | undefined) => boolean;
|
|
166
158
|
visible: () => boolean;
|
|
167
|
-
value: () => string | null;
|
|
168
|
-
disabled: () => string | null;
|
|
169
|
-
role: () => string | null;
|
|
170
|
-
label: () => string | null | undefined;
|
|
171
159
|
getId: () => string;
|
|
172
160
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
173
161
|
getOwnerDocument: () => Document;
|
|
174
162
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
175
163
|
getTagName: () => string;
|
|
164
|
+
tagName: () => string;
|
|
176
165
|
typeIn: (text: string) => Promise<void>;
|
|
166
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
177
167
|
getDOMNode: () => Element;
|
|
178
168
|
node: () => Element;
|
|
179
169
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -183,6 +173,7 @@ export declare const TabsLocator: {
|
|
|
183
173
|
getTextContent: () => string | null;
|
|
184
174
|
getParentNode: () => ParentNode | null;
|
|
185
175
|
parent: () => ParentNode | null;
|
|
176
|
+
getBoundingClientRect: () => DOMRect;
|
|
186
177
|
rect: () => DOMRect;
|
|
187
178
|
hasClass: (classname: string) => boolean;
|
|
188
179
|
containsFocus: () => boolean;
|
|
@@ -194,17 +185,25 @@ export declare const TabsLocator: {
|
|
|
194
185
|
exists: () => boolean;
|
|
195
186
|
text: () => string | null;
|
|
196
187
|
empty: () => boolean;
|
|
188
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
197
189
|
descendants: (selector: string) => Element[];
|
|
198
190
|
ancestors: (selector: string) => ParentNode[];
|
|
199
191
|
attribute: (qualifiedName: string) => string | null;
|
|
200
192
|
style: (property: string) => string;
|
|
201
193
|
classNames: () => string[];
|
|
194
|
+
id: () => string;
|
|
195
|
+
matches: (selector: string | undefined) => boolean;
|
|
202
196
|
checked: () => any;
|
|
203
197
|
selected: () => any;
|
|
198
|
+
disabled: () => string | null;
|
|
204
199
|
readonly: () => any;
|
|
200
|
+
role: () => string | null;
|
|
201
|
+
value: () => string | null;
|
|
202
|
+
label: () => string | null | undefined;
|
|
203
|
+
title: () => string | null | undefined;
|
|
204
|
+
children: (selector: string) => Element[];
|
|
205
205
|
parents: (selector: string) => ParentNode[];
|
|
206
206
|
} & {
|
|
207
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
208
207
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
209
208
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
210
209
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -242,6 +241,7 @@ export declare const TabsLocator: {
|
|
|
242
241
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
243
242
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
243
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
245
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
246
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
247
247
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -294,25 +294,15 @@ export declare const TabsLocator: {
|
|
|
294
294
|
toString: (maxLength?: number | undefined, options?: {
|
|
295
295
|
highlight: boolean;
|
|
296
296
|
} | undefined) => string;
|
|
297
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
298
|
-
children: (selector: string) => Element[];
|
|
299
|
-
title: () => string | null | undefined;
|
|
300
|
-
id: () => string;
|
|
301
|
-
tagName: () => string;
|
|
302
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
303
|
-
getBoundingClientRect: () => DOMRect;
|
|
304
|
-
matches: (selector: string | undefined) => boolean;
|
|
305
297
|
visible: () => boolean;
|
|
306
|
-
value: () => string | null;
|
|
307
|
-
disabled: () => string | null;
|
|
308
|
-
role: () => string | null;
|
|
309
|
-
label: () => string | null | undefined;
|
|
310
298
|
getId: () => string;
|
|
311
299
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
312
300
|
getOwnerDocument: () => Document;
|
|
313
301
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
314
302
|
getTagName: () => string;
|
|
303
|
+
tagName: () => string;
|
|
315
304
|
typeIn: (text: string) => Promise<void>;
|
|
305
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
316
306
|
getDOMNode: () => Element;
|
|
317
307
|
node: () => Element;
|
|
318
308
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -322,6 +312,7 @@ export declare const TabsLocator: {
|
|
|
322
312
|
getTextContent: () => string | null;
|
|
323
313
|
getParentNode: () => ParentNode | null;
|
|
324
314
|
parent: () => ParentNode | null;
|
|
315
|
+
getBoundingClientRect: () => DOMRect;
|
|
325
316
|
rect: () => DOMRect;
|
|
326
317
|
hasClass: (classname: string) => boolean;
|
|
327
318
|
containsFocus: () => boolean;
|
|
@@ -333,17 +324,25 @@ export declare const TabsLocator: {
|
|
|
333
324
|
exists: () => boolean;
|
|
334
325
|
text: () => string | null;
|
|
335
326
|
empty: () => boolean;
|
|
327
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
336
328
|
descendants: (selector: string) => Element[];
|
|
337
329
|
ancestors: (selector: string) => ParentNode[];
|
|
338
330
|
attribute: (qualifiedName: string) => string | null;
|
|
339
331
|
style: (property: string) => string;
|
|
340
332
|
classNames: () => string[];
|
|
333
|
+
id: () => string;
|
|
334
|
+
matches: (selector: string | undefined) => boolean;
|
|
341
335
|
checked: () => any;
|
|
342
336
|
selected: () => any;
|
|
337
|
+
disabled: () => string | null;
|
|
343
338
|
readonly: () => any;
|
|
339
|
+
role: () => string | null;
|
|
340
|
+
value: () => string | null;
|
|
341
|
+
label: () => string | null | undefined;
|
|
342
|
+
title: () => string | null | undefined;
|
|
343
|
+
children: (selector: string) => Element[];
|
|
344
344
|
parents: (selector: string) => ParentNode[];
|
|
345
345
|
} & {
|
|
346
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
347
346
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
348
347
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
349
348
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -381,6 +380,7 @@ export declare const TabsLocator: {
|
|
|
381
380
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
382
381
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
383
382
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
383
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
384
384
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
385
385
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
386
386
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -433,25 +433,15 @@ export declare const TabsLocator: {
|
|
|
433
433
|
toString: (maxLength?: number | undefined, options?: {
|
|
434
434
|
highlight: boolean;
|
|
435
435
|
} | undefined) => string;
|
|
436
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
437
|
-
children: (selector: string) => Element[];
|
|
438
|
-
title: () => string | null | undefined;
|
|
439
|
-
id: () => string;
|
|
440
|
-
tagName: () => string;
|
|
441
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
442
|
-
getBoundingClientRect: () => DOMRect;
|
|
443
|
-
matches: (selector: string | undefined) => boolean;
|
|
444
436
|
visible: () => boolean;
|
|
445
|
-
value: () => string | null;
|
|
446
|
-
disabled: () => string | null;
|
|
447
|
-
role: () => string | null;
|
|
448
|
-
label: () => string | null | undefined;
|
|
449
437
|
getId: () => string;
|
|
450
438
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
451
439
|
getOwnerDocument: () => Document;
|
|
452
440
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
453
441
|
getTagName: () => string;
|
|
442
|
+
tagName: () => string;
|
|
454
443
|
typeIn: (text: string) => Promise<void>;
|
|
444
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
455
445
|
getDOMNode: () => Element;
|
|
456
446
|
node: () => Element;
|
|
457
447
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -461,6 +451,7 @@ export declare const TabsLocator: {
|
|
|
461
451
|
getTextContent: () => string | null;
|
|
462
452
|
getParentNode: () => ParentNode | null;
|
|
463
453
|
parent: () => ParentNode | null;
|
|
454
|
+
getBoundingClientRect: () => DOMRect;
|
|
464
455
|
rect: () => DOMRect;
|
|
465
456
|
hasClass: (classname: string) => boolean;
|
|
466
457
|
containsFocus: () => boolean;
|
|
@@ -472,17 +463,25 @@ export declare const TabsLocator: {
|
|
|
472
463
|
exists: () => boolean;
|
|
473
464
|
text: () => string | null;
|
|
474
465
|
empty: () => boolean;
|
|
466
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
475
467
|
descendants: (selector: string) => Element[];
|
|
476
468
|
ancestors: (selector: string) => ParentNode[];
|
|
477
469
|
attribute: (qualifiedName: string) => string | null;
|
|
478
470
|
style: (property: string) => string;
|
|
479
471
|
classNames: () => string[];
|
|
472
|
+
id: () => string;
|
|
473
|
+
matches: (selector: string | undefined) => boolean;
|
|
480
474
|
checked: () => any;
|
|
481
475
|
selected: () => any;
|
|
476
|
+
disabled: () => string | null;
|
|
482
477
|
readonly: () => any;
|
|
478
|
+
role: () => string | null;
|
|
479
|
+
value: () => string | null;
|
|
480
|
+
label: () => string | null | undefined;
|
|
481
|
+
title: () => string | null | undefined;
|
|
482
|
+
children: (selector: string) => Element[];
|
|
483
483
|
parents: (selector: string) => ParentNode[];
|
|
484
484
|
} & {
|
|
485
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
486
485
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
487
486
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
488
487
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -520,6 +519,7 @@ export declare const TabsLocator: {
|
|
|
520
519
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
521
520
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
522
521
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
522
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
523
523
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
524
524
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
525
525
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -572,25 +572,15 @@ export declare const TabsLocator: {
|
|
|
572
572
|
toString: (maxLength?: number | undefined, options?: {
|
|
573
573
|
highlight: boolean;
|
|
574
574
|
} | undefined) => string;
|
|
575
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
576
|
-
children: (selector: string) => Element[];
|
|
577
|
-
title: () => string | null | undefined;
|
|
578
|
-
id: () => string;
|
|
579
|
-
tagName: () => string;
|
|
580
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
581
|
-
getBoundingClientRect: () => DOMRect;
|
|
582
|
-
matches: (selector: string | undefined) => boolean;
|
|
583
575
|
visible: () => boolean;
|
|
584
|
-
value: () => string | null;
|
|
585
|
-
disabled: () => string | null;
|
|
586
|
-
role: () => string | null;
|
|
587
|
-
label: () => string | null | undefined;
|
|
588
576
|
getId: () => string;
|
|
589
577
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
590
578
|
getOwnerDocument: () => Document;
|
|
591
579
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
592
580
|
getTagName: () => string;
|
|
581
|
+
tagName: () => string;
|
|
593
582
|
typeIn: (text: string) => Promise<void>;
|
|
583
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
594
584
|
getDOMNode: () => Element;
|
|
595
585
|
node: () => Element;
|
|
596
586
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -600,6 +590,7 @@ export declare const TabsLocator: {
|
|
|
600
590
|
getTextContent: () => string | null;
|
|
601
591
|
getParentNode: () => ParentNode | null;
|
|
602
592
|
parent: () => ParentNode | null;
|
|
593
|
+
getBoundingClientRect: () => DOMRect;
|
|
603
594
|
rect: () => DOMRect;
|
|
604
595
|
hasClass: (classname: string) => boolean;
|
|
605
596
|
containsFocus: () => boolean;
|
|
@@ -611,17 +602,25 @@ export declare const TabsLocator: {
|
|
|
611
602
|
exists: () => boolean;
|
|
612
603
|
text: () => string | null;
|
|
613
604
|
empty: () => boolean;
|
|
605
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
614
606
|
descendants: (selector: string) => Element[];
|
|
615
607
|
ancestors: (selector: string) => ParentNode[];
|
|
616
608
|
attribute: (qualifiedName: string) => string | null;
|
|
617
609
|
style: (property: string) => string;
|
|
618
610
|
classNames: () => string[];
|
|
611
|
+
id: () => string;
|
|
612
|
+
matches: (selector: string | undefined) => boolean;
|
|
619
613
|
checked: () => any;
|
|
620
614
|
selected: () => any;
|
|
615
|
+
disabled: () => string | null;
|
|
621
616
|
readonly: () => any;
|
|
617
|
+
role: () => string | null;
|
|
618
|
+
value: () => string | null;
|
|
619
|
+
label: () => string | null | undefined;
|
|
620
|
+
title: () => string | null | undefined;
|
|
621
|
+
children: (selector: string) => Element[];
|
|
622
622
|
parents: (selector: string) => ParentNode[];
|
|
623
623
|
} & {
|
|
624
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
625
624
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
626
625
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
627
626
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -659,6 +658,7 @@ export declare const TabsLocator: {
|
|
|
659
658
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
660
659
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
661
660
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
661
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
662
662
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
663
663
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
664
664
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -718,25 +718,15 @@ export declare const TabsLocator: {
|
|
|
718
718
|
toString: (maxLength?: number | undefined, options?: {
|
|
719
719
|
highlight: boolean;
|
|
720
720
|
} | undefined) => string;
|
|
721
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
722
|
-
children: (selector: string) => Element[];
|
|
723
|
-
title: () => string | null | undefined;
|
|
724
|
-
id: () => string;
|
|
725
|
-
tagName: () => string;
|
|
726
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
727
|
-
getBoundingClientRect: () => DOMRect;
|
|
728
|
-
matches: (selector: string | undefined) => boolean;
|
|
729
721
|
visible: () => boolean;
|
|
730
|
-
value: () => string | null;
|
|
731
|
-
disabled: () => string | null;
|
|
732
|
-
role: () => string | null;
|
|
733
|
-
label: () => string | null | undefined;
|
|
734
722
|
getId: () => string;
|
|
735
723
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
736
724
|
getOwnerDocument: () => Document;
|
|
737
725
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
738
726
|
getTagName: () => string;
|
|
727
|
+
tagName: () => string;
|
|
739
728
|
typeIn: (text: string) => Promise<void>;
|
|
729
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
740
730
|
getDOMNode: () => Element;
|
|
741
731
|
node: () => Element;
|
|
742
732
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -746,6 +736,7 @@ export declare const TabsLocator: {
|
|
|
746
736
|
getTextContent: () => string | null;
|
|
747
737
|
getParentNode: () => ParentNode | null;
|
|
748
738
|
parent: () => ParentNode | null;
|
|
739
|
+
getBoundingClientRect: () => DOMRect;
|
|
749
740
|
rect: () => DOMRect;
|
|
750
741
|
hasClass: (classname: string) => boolean;
|
|
751
742
|
containsFocus: () => boolean;
|
|
@@ -757,17 +748,25 @@ export declare const TabsLocator: {
|
|
|
757
748
|
exists: () => boolean;
|
|
758
749
|
text: () => string | null;
|
|
759
750
|
empty: () => boolean;
|
|
751
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
760
752
|
descendants: (selector: string) => Element[];
|
|
761
753
|
ancestors: (selector: string) => ParentNode[];
|
|
762
754
|
attribute: (qualifiedName: string) => string | null;
|
|
763
755
|
style: (property: string) => string;
|
|
764
756
|
classNames: () => string[];
|
|
757
|
+
id: () => string;
|
|
758
|
+
matches: (selector: string | undefined) => boolean;
|
|
765
759
|
checked: () => any;
|
|
766
760
|
selected: () => any;
|
|
761
|
+
disabled: () => string | null;
|
|
767
762
|
readonly: () => any;
|
|
763
|
+
role: () => string | null;
|
|
764
|
+
value: () => string | null;
|
|
765
|
+
label: () => string | null | undefined;
|
|
766
|
+
title: () => string | null | undefined;
|
|
767
|
+
children: (selector: string) => Element[];
|
|
768
768
|
parents: (selector: string) => ParentNode[];
|
|
769
769
|
} & {
|
|
770
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
771
770
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
772
771
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
773
772
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -805,6 +804,7 @@ export declare const TabsLocator: {
|
|
|
805
804
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
806
805
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
807
806
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
807
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
808
808
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
809
809
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
810
810
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -857,25 +857,15 @@ export declare const TabsLocator: {
|
|
|
857
857
|
toString: (maxLength?: number | undefined, options?: {
|
|
858
858
|
highlight: boolean;
|
|
859
859
|
} | undefined) => string;
|
|
860
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
861
|
-
children: (selector: string) => Element[];
|
|
862
|
-
title: () => string | null | undefined;
|
|
863
|
-
id: () => string;
|
|
864
|
-
tagName: () => string;
|
|
865
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
866
|
-
getBoundingClientRect: () => DOMRect;
|
|
867
|
-
matches: (selector: string | undefined) => boolean;
|
|
868
860
|
visible: () => boolean;
|
|
869
|
-
value: () => string | null;
|
|
870
|
-
disabled: () => string | null;
|
|
871
|
-
role: () => string | null;
|
|
872
|
-
label: () => string | null | undefined;
|
|
873
861
|
getId: () => string;
|
|
874
862
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
875
863
|
getOwnerDocument: () => Document;
|
|
876
864
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
877
865
|
getTagName: () => string;
|
|
866
|
+
tagName: () => string;
|
|
878
867
|
typeIn: (text: string) => Promise<void>;
|
|
868
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
879
869
|
getDOMNode: () => Element;
|
|
880
870
|
node: () => Element;
|
|
881
871
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -885,6 +875,7 @@ export declare const TabsLocator: {
|
|
|
885
875
|
getTextContent: () => string | null;
|
|
886
876
|
getParentNode: () => ParentNode | null;
|
|
887
877
|
parent: () => ParentNode | null;
|
|
878
|
+
getBoundingClientRect: () => DOMRect;
|
|
888
879
|
rect: () => DOMRect;
|
|
889
880
|
hasClass: (classname: string) => boolean;
|
|
890
881
|
containsFocus: () => boolean;
|
|
@@ -896,17 +887,25 @@ export declare const TabsLocator: {
|
|
|
896
887
|
exists: () => boolean;
|
|
897
888
|
text: () => string | null;
|
|
898
889
|
empty: () => boolean;
|
|
890
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
899
891
|
descendants: (selector: string) => Element[];
|
|
900
892
|
ancestors: (selector: string) => ParentNode[];
|
|
901
893
|
attribute: (qualifiedName: string) => string | null;
|
|
902
894
|
style: (property: string) => string;
|
|
903
895
|
classNames: () => string[];
|
|
896
|
+
id: () => string;
|
|
897
|
+
matches: (selector: string | undefined) => boolean;
|
|
904
898
|
checked: () => any;
|
|
905
899
|
selected: () => any;
|
|
900
|
+
disabled: () => string | null;
|
|
906
901
|
readonly: () => any;
|
|
902
|
+
role: () => string | null;
|
|
903
|
+
value: () => string | null;
|
|
904
|
+
label: () => string | null | undefined;
|
|
905
|
+
title: () => string | null | undefined;
|
|
906
|
+
children: (selector: string) => Element[];
|
|
907
907
|
parents: (selector: string) => ParentNode[];
|
|
908
908
|
} & {
|
|
909
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
910
909
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
911
910
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
912
911
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -944,6 +943,7 @@ export declare const TabsLocator: {
|
|
|
944
943
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
945
944
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
946
945
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
946
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
947
947
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
948
948
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
949
949
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -996,25 +996,15 @@ export declare const TabsLocator: {
|
|
|
996
996
|
toString: (maxLength?: number | undefined, options?: {
|
|
997
997
|
highlight: boolean;
|
|
998
998
|
} | undefined) => string;
|
|
999
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1000
|
-
children: (selector: string) => Element[];
|
|
1001
|
-
title: () => string | null | undefined;
|
|
1002
|
-
id: () => string;
|
|
1003
|
-
tagName: () => string;
|
|
1004
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1005
|
-
getBoundingClientRect: () => DOMRect;
|
|
1006
|
-
matches: (selector: string | undefined) => boolean;
|
|
1007
999
|
visible: () => boolean;
|
|
1008
|
-
value: () => string | null;
|
|
1009
|
-
disabled: () => string | null;
|
|
1010
|
-
role: () => string | null;
|
|
1011
|
-
label: () => string | null | undefined;
|
|
1012
1000
|
getId: () => string;
|
|
1013
1001
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1014
1002
|
getOwnerDocument: () => Document;
|
|
1015
1003
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1016
1004
|
getTagName: () => string;
|
|
1005
|
+
tagName: () => string;
|
|
1017
1006
|
typeIn: (text: string) => Promise<void>;
|
|
1007
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1018
1008
|
getDOMNode: () => Element;
|
|
1019
1009
|
node: () => Element;
|
|
1020
1010
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1024,6 +1014,7 @@ export declare const TabsLocator: {
|
|
|
1024
1014
|
getTextContent: () => string | null;
|
|
1025
1015
|
getParentNode: () => ParentNode | null;
|
|
1026
1016
|
parent: () => ParentNode | null;
|
|
1017
|
+
getBoundingClientRect: () => DOMRect;
|
|
1027
1018
|
rect: () => DOMRect;
|
|
1028
1019
|
hasClass: (classname: string) => boolean;
|
|
1029
1020
|
containsFocus: () => boolean;
|
|
@@ -1035,17 +1026,25 @@ export declare const TabsLocator: {
|
|
|
1035
1026
|
exists: () => boolean;
|
|
1036
1027
|
text: () => string | null;
|
|
1037
1028
|
empty: () => boolean;
|
|
1029
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1038
1030
|
descendants: (selector: string) => Element[];
|
|
1039
1031
|
ancestors: (selector: string) => ParentNode[];
|
|
1040
1032
|
attribute: (qualifiedName: string) => string | null;
|
|
1041
1033
|
style: (property: string) => string;
|
|
1042
1034
|
classNames: () => string[];
|
|
1035
|
+
id: () => string;
|
|
1036
|
+
matches: (selector: string | undefined) => boolean;
|
|
1043
1037
|
checked: () => any;
|
|
1044
1038
|
selected: () => any;
|
|
1039
|
+
disabled: () => string | null;
|
|
1045
1040
|
readonly: () => any;
|
|
1041
|
+
role: () => string | null;
|
|
1042
|
+
value: () => string | null;
|
|
1043
|
+
label: () => string | null | undefined;
|
|
1044
|
+
title: () => string | null | undefined;
|
|
1045
|
+
children: (selector: string) => Element[];
|
|
1046
1046
|
parents: (selector: string) => ParentNode[];
|
|
1047
1047
|
} & {
|
|
1048
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1049
1048
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1050
1049
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1051
1050
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1083,6 +1082,7 @@ export declare const TabsLocator: {
|
|
|
1083
1082
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1084
1083
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1085
1084
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1085
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1086
1086
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1087
1087
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1088
1088
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1135,25 +1135,15 @@ export declare const TabsLocator: {
|
|
|
1135
1135
|
toString: (maxLength?: number | undefined, options?: {
|
|
1136
1136
|
highlight: boolean;
|
|
1137
1137
|
} | undefined) => string;
|
|
1138
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1139
|
-
children: (selector: string) => Element[];
|
|
1140
|
-
title: () => string | null | undefined;
|
|
1141
|
-
id: () => string;
|
|
1142
|
-
tagName: () => string;
|
|
1143
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1144
|
-
getBoundingClientRect: () => DOMRect;
|
|
1145
|
-
matches: (selector: string | undefined) => boolean;
|
|
1146
1138
|
visible: () => boolean;
|
|
1147
|
-
value: () => string | null;
|
|
1148
|
-
disabled: () => string | null;
|
|
1149
|
-
role: () => string | null;
|
|
1150
|
-
label: () => string | null | undefined;
|
|
1151
1139
|
getId: () => string;
|
|
1152
1140
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1153
1141
|
getOwnerDocument: () => Document;
|
|
1154
1142
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1155
1143
|
getTagName: () => string;
|
|
1144
|
+
tagName: () => string;
|
|
1156
1145
|
typeIn: (text: string) => Promise<void>;
|
|
1146
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1157
1147
|
getDOMNode: () => Element;
|
|
1158
1148
|
node: () => Element;
|
|
1159
1149
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1163,6 +1153,7 @@ export declare const TabsLocator: {
|
|
|
1163
1153
|
getTextContent: () => string | null;
|
|
1164
1154
|
getParentNode: () => ParentNode | null;
|
|
1165
1155
|
parent: () => ParentNode | null;
|
|
1156
|
+
getBoundingClientRect: () => DOMRect;
|
|
1166
1157
|
rect: () => DOMRect;
|
|
1167
1158
|
hasClass: (classname: string) => boolean;
|
|
1168
1159
|
containsFocus: () => boolean;
|
|
@@ -1174,17 +1165,25 @@ export declare const TabsLocator: {
|
|
|
1174
1165
|
exists: () => boolean;
|
|
1175
1166
|
text: () => string | null;
|
|
1176
1167
|
empty: () => boolean;
|
|
1168
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1177
1169
|
descendants: (selector: string) => Element[];
|
|
1178
1170
|
ancestors: (selector: string) => ParentNode[];
|
|
1179
1171
|
attribute: (qualifiedName: string) => string | null;
|
|
1180
1172
|
style: (property: string) => string;
|
|
1181
1173
|
classNames: () => string[];
|
|
1174
|
+
id: () => string;
|
|
1175
|
+
matches: (selector: string | undefined) => boolean;
|
|
1182
1176
|
checked: () => any;
|
|
1183
1177
|
selected: () => any;
|
|
1178
|
+
disabled: () => string | null;
|
|
1184
1179
|
readonly: () => any;
|
|
1180
|
+
role: () => string | null;
|
|
1181
|
+
value: () => string | null;
|
|
1182
|
+
label: () => string | null | undefined;
|
|
1183
|
+
title: () => string | null | undefined;
|
|
1184
|
+
children: (selector: string) => Element[];
|
|
1185
1185
|
parents: (selector: string) => ParentNode[];
|
|
1186
1186
|
} & {
|
|
1187
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1188
1187
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1189
1188
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1190
1189
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1222,6 +1221,7 @@ export declare const TabsLocator: {
|
|
|
1222
1221
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1223
1222
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1224
1223
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1224
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1225
1225
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1226
1226
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1227
1227
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1274,25 +1274,15 @@ export declare const TabsLocator: {
|
|
|
1274
1274
|
toString: (maxLength?: number | undefined, options?: {
|
|
1275
1275
|
highlight: boolean;
|
|
1276
1276
|
} | undefined) => string;
|
|
1277
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1278
|
-
children: (selector: string) => Element[];
|
|
1279
|
-
title: () => string | null | undefined;
|
|
1280
|
-
id: () => string;
|
|
1281
|
-
tagName: () => string;
|
|
1282
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1283
|
-
getBoundingClientRect: () => DOMRect;
|
|
1284
|
-
matches: (selector: string | undefined) => boolean;
|
|
1285
1277
|
visible: () => boolean;
|
|
1286
|
-
value: () => string | null;
|
|
1287
|
-
disabled: () => string | null;
|
|
1288
|
-
role: () => string | null;
|
|
1289
|
-
label: () => string | null | undefined;
|
|
1290
1278
|
getId: () => string;
|
|
1291
1279
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1292
1280
|
getOwnerDocument: () => Document;
|
|
1293
1281
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1294
1282
|
getTagName: () => string;
|
|
1283
|
+
tagName: () => string;
|
|
1295
1284
|
typeIn: (text: string) => Promise<void>;
|
|
1285
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1296
1286
|
getDOMNode: () => Element;
|
|
1297
1287
|
node: () => Element;
|
|
1298
1288
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1302,6 +1292,7 @@ export declare const TabsLocator: {
|
|
|
1302
1292
|
getTextContent: () => string | null;
|
|
1303
1293
|
getParentNode: () => ParentNode | null;
|
|
1304
1294
|
parent: () => ParentNode | null;
|
|
1295
|
+
getBoundingClientRect: () => DOMRect;
|
|
1305
1296
|
rect: () => DOMRect;
|
|
1306
1297
|
hasClass: (classname: string) => boolean;
|
|
1307
1298
|
containsFocus: () => boolean;
|
|
@@ -1313,17 +1304,25 @@ export declare const TabsLocator: {
|
|
|
1313
1304
|
exists: () => boolean;
|
|
1314
1305
|
text: () => string | null;
|
|
1315
1306
|
empty: () => boolean;
|
|
1307
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1316
1308
|
descendants: (selector: string) => Element[];
|
|
1317
1309
|
ancestors: (selector: string) => ParentNode[];
|
|
1318
1310
|
attribute: (qualifiedName: string) => string | null;
|
|
1319
1311
|
style: (property: string) => string;
|
|
1320
1312
|
classNames: () => string[];
|
|
1313
|
+
id: () => string;
|
|
1314
|
+
matches: (selector: string | undefined) => boolean;
|
|
1321
1315
|
checked: () => any;
|
|
1322
1316
|
selected: () => any;
|
|
1317
|
+
disabled: () => string | null;
|
|
1323
1318
|
readonly: () => any;
|
|
1319
|
+
role: () => string | null;
|
|
1320
|
+
value: () => string | null;
|
|
1321
|
+
label: () => string | null | undefined;
|
|
1322
|
+
title: () => string | null | undefined;
|
|
1323
|
+
children: (selector: string) => Element[];
|
|
1324
1324
|
parents: (selector: string) => ParentNode[];
|
|
1325
1325
|
} & {
|
|
1326
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1327
1326
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1328
1327
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1329
1328
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1361,6 +1360,7 @@ export declare const TabsLocator: {
|
|
|
1361
1360
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1362
1361
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1363
1362
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1363
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1364
1364
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1365
1365
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1366
1366
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1413,25 +1413,15 @@ export declare const TabsLocator: {
|
|
|
1413
1413
|
toString: (maxLength?: number | undefined, options?: {
|
|
1414
1414
|
highlight: boolean;
|
|
1415
1415
|
} | undefined) => string;
|
|
1416
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1417
|
-
children: (selector: string) => Element[];
|
|
1418
|
-
title: () => string | null | undefined;
|
|
1419
|
-
id: () => string;
|
|
1420
|
-
tagName: () => string;
|
|
1421
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1422
|
-
getBoundingClientRect: () => DOMRect;
|
|
1423
|
-
matches: (selector: string | undefined) => boolean;
|
|
1424
1416
|
visible: () => boolean;
|
|
1425
|
-
value: () => string | null;
|
|
1426
|
-
disabled: () => string | null;
|
|
1427
|
-
role: () => string | null;
|
|
1428
|
-
label: () => string | null | undefined;
|
|
1429
1417
|
getId: () => string;
|
|
1430
1418
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1431
1419
|
getOwnerDocument: () => Document;
|
|
1432
1420
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1433
1421
|
getTagName: () => string;
|
|
1422
|
+
tagName: () => string;
|
|
1434
1423
|
typeIn: (text: string) => Promise<void>;
|
|
1424
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1435
1425
|
getDOMNode: () => Element;
|
|
1436
1426
|
node: () => Element;
|
|
1437
1427
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1441,6 +1431,7 @@ export declare const TabsLocator: {
|
|
|
1441
1431
|
getTextContent: () => string | null;
|
|
1442
1432
|
getParentNode: () => ParentNode | null;
|
|
1443
1433
|
parent: () => ParentNode | null;
|
|
1434
|
+
getBoundingClientRect: () => DOMRect;
|
|
1444
1435
|
rect: () => DOMRect;
|
|
1445
1436
|
hasClass: (classname: string) => boolean;
|
|
1446
1437
|
containsFocus: () => boolean;
|
|
@@ -1452,17 +1443,25 @@ export declare const TabsLocator: {
|
|
|
1452
1443
|
exists: () => boolean;
|
|
1453
1444
|
text: () => string | null;
|
|
1454
1445
|
empty: () => boolean;
|
|
1446
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1455
1447
|
descendants: (selector: string) => Element[];
|
|
1456
1448
|
ancestors: (selector: string) => ParentNode[];
|
|
1457
1449
|
attribute: (qualifiedName: string) => string | null;
|
|
1458
1450
|
style: (property: string) => string;
|
|
1459
1451
|
classNames: () => string[];
|
|
1452
|
+
id: () => string;
|
|
1453
|
+
matches: (selector: string | undefined) => boolean;
|
|
1460
1454
|
checked: () => any;
|
|
1461
1455
|
selected: () => any;
|
|
1456
|
+
disabled: () => string | null;
|
|
1462
1457
|
readonly: () => any;
|
|
1458
|
+
role: () => string | null;
|
|
1459
|
+
value: () => string | null;
|
|
1460
|
+
label: () => string | null | undefined;
|
|
1461
|
+
title: () => string | null | undefined;
|
|
1462
|
+
children: (selector: string) => Element[];
|
|
1463
1463
|
parents: (selector: string) => ParentNode[];
|
|
1464
1464
|
} & {
|
|
1465
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1466
1465
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1467
1466
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1468
1467
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1500,6 +1499,7 @@ export declare const TabsLocator: {
|
|
|
1500
1499
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1501
1500
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1502
1501
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1502
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1503
1503
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1504
1504
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1505
1505
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1553,25 +1553,15 @@ export declare const TabsLocator: {
|
|
|
1553
1553
|
toString: (maxLength?: number | undefined, options?: {
|
|
1554
1554
|
highlight: boolean;
|
|
1555
1555
|
} | undefined) => string;
|
|
1556
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1557
|
-
children: (selector: string) => Element[];
|
|
1558
|
-
title: () => string | null | undefined;
|
|
1559
|
-
id: () => string;
|
|
1560
|
-
tagName: () => string;
|
|
1561
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1562
|
-
getBoundingClientRect: () => DOMRect;
|
|
1563
|
-
matches: (selector: string | undefined) => boolean;
|
|
1564
1556
|
visible: () => boolean;
|
|
1565
|
-
value: () => string | null;
|
|
1566
|
-
disabled: () => string | null;
|
|
1567
|
-
role: () => string | null;
|
|
1568
|
-
label: () => string | null | undefined;
|
|
1569
1557
|
getId: () => string;
|
|
1570
1558
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1571
1559
|
getOwnerDocument: () => Document;
|
|
1572
1560
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1573
1561
|
getTagName: () => string;
|
|
1562
|
+
tagName: () => string;
|
|
1574
1563
|
typeIn: (text: string) => Promise<void>;
|
|
1564
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1575
1565
|
getDOMNode: () => Element;
|
|
1576
1566
|
node: () => Element;
|
|
1577
1567
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1581,6 +1571,7 @@ export declare const TabsLocator: {
|
|
|
1581
1571
|
getTextContent: () => string | null;
|
|
1582
1572
|
getParentNode: () => ParentNode | null;
|
|
1583
1573
|
parent: () => ParentNode | null;
|
|
1574
|
+
getBoundingClientRect: () => DOMRect;
|
|
1584
1575
|
rect: () => DOMRect;
|
|
1585
1576
|
hasClass: (classname: string) => boolean;
|
|
1586
1577
|
containsFocus: () => boolean;
|
|
@@ -1592,17 +1583,25 @@ export declare const TabsLocator: {
|
|
|
1592
1583
|
exists: () => boolean;
|
|
1593
1584
|
text: () => string | null;
|
|
1594
1585
|
empty: () => boolean;
|
|
1586
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1595
1587
|
descendants: (selector: string) => Element[];
|
|
1596
1588
|
ancestors: (selector: string) => ParentNode[];
|
|
1597
1589
|
attribute: (qualifiedName: string) => string | null;
|
|
1598
1590
|
style: (property: string) => string;
|
|
1599
1591
|
classNames: () => string[];
|
|
1592
|
+
id: () => string;
|
|
1593
|
+
matches: (selector: string | undefined) => boolean;
|
|
1600
1594
|
checked: () => any;
|
|
1601
1595
|
selected: () => any;
|
|
1596
|
+
disabled: () => string | null;
|
|
1602
1597
|
readonly: () => any;
|
|
1598
|
+
role: () => string | null;
|
|
1599
|
+
value: () => string | null;
|
|
1600
|
+
label: () => string | null | undefined;
|
|
1601
|
+
title: () => string | null | undefined;
|
|
1602
|
+
children: (selector: string) => Element[];
|
|
1603
1603
|
parents: (selector: string) => ParentNode[];
|
|
1604
1604
|
} & {
|
|
1605
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1606
1605
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1607
1606
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1608
1607
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1640,6 +1639,7 @@ export declare const TabsLocator: {
|
|
|
1640
1639
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1641
1640
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1642
1641
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1642
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1643
1643
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1644
1644
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1645
1645
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1692,25 +1692,15 @@ export declare const TabsLocator: {
|
|
|
1692
1692
|
toString: (maxLength?: number | undefined, options?: {
|
|
1693
1693
|
highlight: boolean;
|
|
1694
1694
|
} | undefined) => string;
|
|
1695
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1696
|
-
children: (selector: string) => Element[];
|
|
1697
|
-
title: () => string | null | undefined;
|
|
1698
|
-
id: () => string;
|
|
1699
|
-
tagName: () => string;
|
|
1700
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1701
|
-
getBoundingClientRect: () => DOMRect;
|
|
1702
|
-
matches: (selector: string | undefined) => boolean;
|
|
1703
1695
|
visible: () => boolean;
|
|
1704
|
-
value: () => string | null;
|
|
1705
|
-
disabled: () => string | null;
|
|
1706
|
-
role: () => string | null;
|
|
1707
|
-
label: () => string | null | undefined;
|
|
1708
1696
|
getId: () => string;
|
|
1709
1697
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1710
1698
|
getOwnerDocument: () => Document;
|
|
1711
1699
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1712
1700
|
getTagName: () => string;
|
|
1701
|
+
tagName: () => string;
|
|
1713
1702
|
typeIn: (text: string) => Promise<void>;
|
|
1703
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1714
1704
|
getDOMNode: () => Element;
|
|
1715
1705
|
node: () => Element;
|
|
1716
1706
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1720,6 +1710,7 @@ export declare const TabsLocator: {
|
|
|
1720
1710
|
getTextContent: () => string | null;
|
|
1721
1711
|
getParentNode: () => ParentNode | null;
|
|
1722
1712
|
parent: () => ParentNode | null;
|
|
1713
|
+
getBoundingClientRect: () => DOMRect;
|
|
1723
1714
|
rect: () => DOMRect;
|
|
1724
1715
|
hasClass: (classname: string) => boolean;
|
|
1725
1716
|
containsFocus: () => boolean;
|
|
@@ -1731,17 +1722,25 @@ export declare const TabsLocator: {
|
|
|
1731
1722
|
exists: () => boolean;
|
|
1732
1723
|
text: () => string | null;
|
|
1733
1724
|
empty: () => boolean;
|
|
1725
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1734
1726
|
descendants: (selector: string) => Element[];
|
|
1735
1727
|
ancestors: (selector: string) => ParentNode[];
|
|
1736
1728
|
attribute: (qualifiedName: string) => string | null;
|
|
1737
1729
|
style: (property: string) => string;
|
|
1738
1730
|
classNames: () => string[];
|
|
1731
|
+
id: () => string;
|
|
1732
|
+
matches: (selector: string | undefined) => boolean;
|
|
1739
1733
|
checked: () => any;
|
|
1740
1734
|
selected: () => any;
|
|
1735
|
+
disabled: () => string | null;
|
|
1741
1736
|
readonly: () => any;
|
|
1737
|
+
role: () => string | null;
|
|
1738
|
+
value: () => string | null;
|
|
1739
|
+
label: () => string | null | undefined;
|
|
1740
|
+
title: () => string | null | undefined;
|
|
1741
|
+
children: (selector: string) => Element[];
|
|
1742
1742
|
parents: (selector: string) => ParentNode[];
|
|
1743
1743
|
} & {
|
|
1744
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1745
1744
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1746
1745
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1747
1746
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1779,6 +1778,7 @@ export declare const TabsLocator: {
|
|
|
1779
1778
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1780
1779
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1781
1780
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1781
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1782
1782
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1783
1783
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1784
1784
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1831,25 +1831,15 @@ export declare const TabsLocator: {
|
|
|
1831
1831
|
toString: (maxLength?: number | undefined, options?: {
|
|
1832
1832
|
highlight: boolean;
|
|
1833
1833
|
} | undefined) => string;
|
|
1834
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1835
|
-
children: (selector: string) => Element[];
|
|
1836
|
-
title: () => string | null | undefined;
|
|
1837
|
-
id: () => string;
|
|
1838
|
-
tagName: () => string;
|
|
1839
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1840
|
-
getBoundingClientRect: () => DOMRect;
|
|
1841
|
-
matches: (selector: string | undefined) => boolean;
|
|
1842
1834
|
visible: () => boolean;
|
|
1843
|
-
value: () => string | null;
|
|
1844
|
-
disabled: () => string | null;
|
|
1845
|
-
role: () => string | null;
|
|
1846
|
-
label: () => string | null | undefined;
|
|
1847
1835
|
getId: () => string;
|
|
1848
1836
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1849
1837
|
getOwnerDocument: () => Document;
|
|
1850
1838
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1851
1839
|
getTagName: () => string;
|
|
1840
|
+
tagName: () => string;
|
|
1852
1841
|
typeIn: (text: string) => Promise<void>;
|
|
1842
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1853
1843
|
getDOMNode: () => Element;
|
|
1854
1844
|
node: () => Element;
|
|
1855
1845
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1859,6 +1849,7 @@ export declare const TabsLocator: {
|
|
|
1859
1849
|
getTextContent: () => string | null;
|
|
1860
1850
|
getParentNode: () => ParentNode | null;
|
|
1861
1851
|
parent: () => ParentNode | null;
|
|
1852
|
+
getBoundingClientRect: () => DOMRect;
|
|
1862
1853
|
rect: () => DOMRect;
|
|
1863
1854
|
hasClass: (classname: string) => boolean;
|
|
1864
1855
|
containsFocus: () => boolean;
|
|
@@ -1870,17 +1861,25 @@ export declare const TabsLocator: {
|
|
|
1870
1861
|
exists: () => boolean;
|
|
1871
1862
|
text: () => string | null;
|
|
1872
1863
|
empty: () => boolean;
|
|
1864
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1873
1865
|
descendants: (selector: string) => Element[];
|
|
1874
1866
|
ancestors: (selector: string) => ParentNode[];
|
|
1875
1867
|
attribute: (qualifiedName: string) => string | null;
|
|
1876
1868
|
style: (property: string) => string;
|
|
1877
1869
|
classNames: () => string[];
|
|
1870
|
+
id: () => string;
|
|
1871
|
+
matches: (selector: string | undefined) => boolean;
|
|
1878
1872
|
checked: () => any;
|
|
1879
1873
|
selected: () => any;
|
|
1874
|
+
disabled: () => string | null;
|
|
1880
1875
|
readonly: () => any;
|
|
1876
|
+
role: () => string | null;
|
|
1877
|
+
value: () => string | null;
|
|
1878
|
+
label: () => string | null | undefined;
|
|
1879
|
+
title: () => string | null | undefined;
|
|
1880
|
+
children: (selector: string) => Element[];
|
|
1881
1881
|
parents: (selector: string) => ParentNode[];
|
|
1882
1882
|
} & {
|
|
1883
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1884
1883
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1885
1884
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1886
1885
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1918,6 +1917,7 @@ export declare const TabsLocator: {
|
|
|
1918
1917
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1919
1918
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1920
1919
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1920
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1921
1921
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1922
1922
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1923
1923
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1970,25 +1970,15 @@ export declare const TabsLocator: {
|
|
|
1970
1970
|
toString: (maxLength?: number | undefined, options?: {
|
|
1971
1971
|
highlight: boolean;
|
|
1972
1972
|
} | undefined) => string;
|
|
1973
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1974
|
-
children: (selector: string) => Element[];
|
|
1975
|
-
title: () => string | null | undefined;
|
|
1976
|
-
id: () => string;
|
|
1977
|
-
tagName: () => string;
|
|
1978
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1979
|
-
getBoundingClientRect: () => DOMRect;
|
|
1980
|
-
matches: (selector: string | undefined) => boolean;
|
|
1981
1973
|
visible: () => boolean;
|
|
1982
|
-
value: () => string | null;
|
|
1983
|
-
disabled: () => string | null;
|
|
1984
|
-
role: () => string | null;
|
|
1985
|
-
label: () => string | null | undefined;
|
|
1986
1974
|
getId: () => string;
|
|
1987
1975
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1988
1976
|
getOwnerDocument: () => Document;
|
|
1989
1977
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1990
1978
|
getTagName: () => string;
|
|
1979
|
+
tagName: () => string;
|
|
1991
1980
|
typeIn: (text: string) => Promise<void>;
|
|
1981
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1992
1982
|
getDOMNode: () => Element;
|
|
1993
1983
|
node: () => Element;
|
|
1994
1984
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1998,6 +1988,7 @@ export declare const TabsLocator: {
|
|
|
1998
1988
|
getTextContent: () => string | null;
|
|
1999
1989
|
getParentNode: () => ParentNode | null;
|
|
2000
1990
|
parent: () => ParentNode | null;
|
|
1991
|
+
getBoundingClientRect: () => DOMRect;
|
|
2001
1992
|
rect: () => DOMRect;
|
|
2002
1993
|
hasClass: (classname: string) => boolean;
|
|
2003
1994
|
containsFocus: () => boolean;
|
|
@@ -2009,17 +2000,25 @@ export declare const TabsLocator: {
|
|
|
2009
2000
|
exists: () => boolean;
|
|
2010
2001
|
text: () => string | null;
|
|
2011
2002
|
empty: () => boolean;
|
|
2003
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2012
2004
|
descendants: (selector: string) => Element[];
|
|
2013
2005
|
ancestors: (selector: string) => ParentNode[];
|
|
2014
2006
|
attribute: (qualifiedName: string) => string | null;
|
|
2015
2007
|
style: (property: string) => string;
|
|
2016
2008
|
classNames: () => string[];
|
|
2009
|
+
id: () => string;
|
|
2010
|
+
matches: (selector: string | undefined) => boolean;
|
|
2017
2011
|
checked: () => any;
|
|
2018
2012
|
selected: () => any;
|
|
2013
|
+
disabled: () => string | null;
|
|
2019
2014
|
readonly: () => any;
|
|
2015
|
+
role: () => string | null;
|
|
2016
|
+
value: () => string | null;
|
|
2017
|
+
label: () => string | null | undefined;
|
|
2018
|
+
title: () => string | null | undefined;
|
|
2019
|
+
children: (selector: string) => Element[];
|
|
2020
2020
|
parents: (selector: string) => ParentNode[];
|
|
2021
2021
|
} & {
|
|
2022
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2023
2022
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2024
2023
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2025
2024
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2057,6 +2056,7 @@ export declare const TabsLocator: {
|
|
|
2057
2056
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2058
2057
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2059
2058
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2059
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2060
2060
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2061
2061
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2062
2062
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2109,25 +2109,15 @@ export declare const TabsLocator: {
|
|
|
2109
2109
|
toString: (maxLength?: number | undefined, options?: {
|
|
2110
2110
|
highlight: boolean;
|
|
2111
2111
|
} | undefined) => string;
|
|
2112
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2113
|
-
children: (selector: string) => Element[];
|
|
2114
|
-
title: () => string | null | undefined;
|
|
2115
|
-
id: () => string;
|
|
2116
|
-
tagName: () => string;
|
|
2117
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2118
|
-
getBoundingClientRect: () => DOMRect;
|
|
2119
|
-
matches: (selector: string | undefined) => boolean;
|
|
2120
2112
|
visible: () => boolean;
|
|
2121
|
-
value: () => string | null;
|
|
2122
|
-
disabled: () => string | null;
|
|
2123
|
-
role: () => string | null;
|
|
2124
|
-
label: () => string | null | undefined;
|
|
2125
2113
|
getId: () => string;
|
|
2126
2114
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2127
2115
|
getOwnerDocument: () => Document;
|
|
2128
2116
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2129
2117
|
getTagName: () => string;
|
|
2118
|
+
tagName: () => string;
|
|
2130
2119
|
typeIn: (text: string) => Promise<void>;
|
|
2120
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2131
2121
|
getDOMNode: () => Element;
|
|
2132
2122
|
node: () => Element;
|
|
2133
2123
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2137,6 +2127,7 @@ export declare const TabsLocator: {
|
|
|
2137
2127
|
getTextContent: () => string | null;
|
|
2138
2128
|
getParentNode: () => ParentNode | null;
|
|
2139
2129
|
parent: () => ParentNode | null;
|
|
2130
|
+
getBoundingClientRect: () => DOMRect;
|
|
2140
2131
|
rect: () => DOMRect;
|
|
2141
2132
|
hasClass: (classname: string) => boolean;
|
|
2142
2133
|
containsFocus: () => boolean;
|
|
@@ -2148,17 +2139,25 @@ export declare const TabsLocator: {
|
|
|
2148
2139
|
exists: () => boolean;
|
|
2149
2140
|
text: () => string | null;
|
|
2150
2141
|
empty: () => boolean;
|
|
2142
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2151
2143
|
descendants: (selector: string) => Element[];
|
|
2152
2144
|
ancestors: (selector: string) => ParentNode[];
|
|
2153
2145
|
attribute: (qualifiedName: string) => string | null;
|
|
2154
2146
|
style: (property: string) => string;
|
|
2155
2147
|
classNames: () => string[];
|
|
2148
|
+
id: () => string;
|
|
2149
|
+
matches: (selector: string | undefined) => boolean;
|
|
2156
2150
|
checked: () => any;
|
|
2157
2151
|
selected: () => any;
|
|
2152
|
+
disabled: () => string | null;
|
|
2158
2153
|
readonly: () => any;
|
|
2154
|
+
role: () => string | null;
|
|
2155
|
+
value: () => string | null;
|
|
2156
|
+
label: () => string | null | undefined;
|
|
2157
|
+
title: () => string | null | undefined;
|
|
2158
|
+
children: (selector: string) => Element[];
|
|
2159
2159
|
parents: (selector: string) => ParentNode[];
|
|
2160
2160
|
} & {
|
|
2161
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2162
2161
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2163
2162
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2164
2163
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2196,6 +2195,7 @@ export declare const TabsLocator: {
|
|
|
2196
2195
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2197
2196
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2198
2197
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2198
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2199
2199
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2200
2200
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2201
2201
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2248,25 +2248,15 @@ export declare const TabsLocator: {
|
|
|
2248
2248
|
toString: (maxLength?: number | undefined, options?: {
|
|
2249
2249
|
highlight: boolean;
|
|
2250
2250
|
} | undefined) => string;
|
|
2251
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2252
|
-
children: (selector: string) => Element[];
|
|
2253
|
-
title: () => string | null | undefined;
|
|
2254
|
-
id: () => string;
|
|
2255
|
-
tagName: () => string;
|
|
2256
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2257
|
-
getBoundingClientRect: () => DOMRect;
|
|
2258
|
-
matches: (selector: string | undefined) => boolean;
|
|
2259
2251
|
visible: () => boolean;
|
|
2260
|
-
value: () => string | null;
|
|
2261
|
-
disabled: () => string | null;
|
|
2262
|
-
role: () => string | null;
|
|
2263
|
-
label: () => string | null | undefined;
|
|
2264
2252
|
getId: () => string;
|
|
2265
2253
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2266
2254
|
getOwnerDocument: () => Document;
|
|
2267
2255
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2268
2256
|
getTagName: () => string;
|
|
2257
|
+
tagName: () => string;
|
|
2269
2258
|
typeIn: (text: string) => Promise<void>;
|
|
2259
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2270
2260
|
getDOMNode: () => Element;
|
|
2271
2261
|
node: () => Element;
|
|
2272
2262
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2276,6 +2266,7 @@ export declare const TabsLocator: {
|
|
|
2276
2266
|
getTextContent: () => string | null;
|
|
2277
2267
|
getParentNode: () => ParentNode | null;
|
|
2278
2268
|
parent: () => ParentNode | null;
|
|
2269
|
+
getBoundingClientRect: () => DOMRect;
|
|
2279
2270
|
rect: () => DOMRect;
|
|
2280
2271
|
hasClass: (classname: string) => boolean;
|
|
2281
2272
|
containsFocus: () => boolean;
|
|
@@ -2287,17 +2278,25 @@ export declare const TabsLocator: {
|
|
|
2287
2278
|
exists: () => boolean;
|
|
2288
2279
|
text: () => string | null;
|
|
2289
2280
|
empty: () => boolean;
|
|
2281
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2290
2282
|
descendants: (selector: string) => Element[];
|
|
2291
2283
|
ancestors: (selector: string) => ParentNode[];
|
|
2292
2284
|
attribute: (qualifiedName: string) => string | null;
|
|
2293
2285
|
style: (property: string) => string;
|
|
2294
2286
|
classNames: () => string[];
|
|
2287
|
+
id: () => string;
|
|
2288
|
+
matches: (selector: string | undefined) => boolean;
|
|
2295
2289
|
checked: () => any;
|
|
2296
2290
|
selected: () => any;
|
|
2291
|
+
disabled: () => string | null;
|
|
2297
2292
|
readonly: () => any;
|
|
2293
|
+
role: () => string | null;
|
|
2294
|
+
value: () => string | null;
|
|
2295
|
+
label: () => string | null | undefined;
|
|
2296
|
+
title: () => string | null | undefined;
|
|
2297
|
+
children: (selector: string) => Element[];
|
|
2298
2298
|
parents: (selector: string) => ParentNode[];
|
|
2299
2299
|
} & {
|
|
2300
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2301
2300
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2302
2301
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2303
2302
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2335,6 +2334,7 @@ export declare const TabsLocator: {
|
|
|
2335
2334
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2336
2335
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2337
2336
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2337
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2338
2338
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2339
2339
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2340
2340
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2388,25 +2388,15 @@ export declare const TabsLocator: {
|
|
|
2388
2388
|
toString: (maxLength?: number | undefined, options?: {
|
|
2389
2389
|
highlight: boolean;
|
|
2390
2390
|
} | undefined) => string;
|
|
2391
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2392
|
-
children: (selector: string) => Element[];
|
|
2393
|
-
title: () => string | null | undefined;
|
|
2394
|
-
id: () => string;
|
|
2395
|
-
tagName: () => string;
|
|
2396
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2397
|
-
getBoundingClientRect: () => DOMRect;
|
|
2398
|
-
matches: (selector: string | undefined) => boolean;
|
|
2399
2391
|
visible: () => boolean;
|
|
2400
|
-
value: () => string | null;
|
|
2401
|
-
disabled: () => string | null;
|
|
2402
|
-
role: () => string | null;
|
|
2403
|
-
label: () => string | null | undefined;
|
|
2404
2392
|
getId: () => string;
|
|
2405
2393
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2406
2394
|
getOwnerDocument: () => Document;
|
|
2407
2395
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2408
2396
|
getTagName: () => string;
|
|
2397
|
+
tagName: () => string;
|
|
2409
2398
|
typeIn: (text: string) => Promise<void>;
|
|
2399
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2410
2400
|
getDOMNode: () => Element;
|
|
2411
2401
|
node: () => Element;
|
|
2412
2402
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2416,6 +2406,7 @@ export declare const TabsLocator: {
|
|
|
2416
2406
|
getTextContent: () => string | null;
|
|
2417
2407
|
getParentNode: () => ParentNode | null;
|
|
2418
2408
|
parent: () => ParentNode | null;
|
|
2409
|
+
getBoundingClientRect: () => DOMRect;
|
|
2419
2410
|
rect: () => DOMRect;
|
|
2420
2411
|
hasClass: (classname: string) => boolean;
|
|
2421
2412
|
containsFocus: () => boolean;
|
|
@@ -2427,17 +2418,25 @@ export declare const TabsLocator: {
|
|
|
2427
2418
|
exists: () => boolean;
|
|
2428
2419
|
text: () => string | null;
|
|
2429
2420
|
empty: () => boolean;
|
|
2421
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2430
2422
|
descendants: (selector: string) => Element[];
|
|
2431
2423
|
ancestors: (selector: string) => ParentNode[];
|
|
2432
2424
|
attribute: (qualifiedName: string) => string | null;
|
|
2433
2425
|
style: (property: string) => string;
|
|
2434
2426
|
classNames: () => string[];
|
|
2427
|
+
id: () => string;
|
|
2428
|
+
matches: (selector: string | undefined) => boolean;
|
|
2435
2429
|
checked: () => any;
|
|
2436
2430
|
selected: () => any;
|
|
2431
|
+
disabled: () => string | null;
|
|
2437
2432
|
readonly: () => any;
|
|
2433
|
+
role: () => string | null;
|
|
2434
|
+
value: () => string | null;
|
|
2435
|
+
label: () => string | null | undefined;
|
|
2436
|
+
title: () => string | null | undefined;
|
|
2437
|
+
children: (selector: string) => Element[];
|
|
2438
2438
|
parents: (selector: string) => ParentNode[];
|
|
2439
2439
|
} & {
|
|
2440
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2441
2440
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2442
2441
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2443
2442
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2475,6 +2474,7 @@ export declare const TabsLocator: {
|
|
|
2475
2474
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2476
2475
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2477
2476
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2477
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2478
2478
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2479
2479
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2480
2480
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2527,25 +2527,15 @@ export declare const TabsLocator: {
|
|
|
2527
2527
|
toString: (maxLength?: number | undefined, options?: {
|
|
2528
2528
|
highlight: boolean;
|
|
2529
2529
|
} | undefined) => string;
|
|
2530
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2531
|
-
children: (selector: string) => Element[];
|
|
2532
|
-
title: () => string | null | undefined;
|
|
2533
|
-
id: () => string;
|
|
2534
|
-
tagName: () => string;
|
|
2535
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2536
|
-
getBoundingClientRect: () => DOMRect;
|
|
2537
|
-
matches: (selector: string | undefined) => boolean;
|
|
2538
2530
|
visible: () => boolean;
|
|
2539
|
-
value: () => string | null;
|
|
2540
|
-
disabled: () => string | null;
|
|
2541
|
-
role: () => string | null;
|
|
2542
|
-
label: () => string | null | undefined;
|
|
2543
2531
|
getId: () => string;
|
|
2544
2532
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2545
2533
|
getOwnerDocument: () => Document;
|
|
2546
2534
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2547
2535
|
getTagName: () => string;
|
|
2536
|
+
tagName: () => string;
|
|
2548
2537
|
typeIn: (text: string) => Promise<void>;
|
|
2538
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2549
2539
|
getDOMNode: () => Element;
|
|
2550
2540
|
node: () => Element;
|
|
2551
2541
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2555,6 +2545,7 @@ export declare const TabsLocator: {
|
|
|
2555
2545
|
getTextContent: () => string | null;
|
|
2556
2546
|
getParentNode: () => ParentNode | null;
|
|
2557
2547
|
parent: () => ParentNode | null;
|
|
2548
|
+
getBoundingClientRect: () => DOMRect;
|
|
2558
2549
|
rect: () => DOMRect;
|
|
2559
2550
|
hasClass: (classname: string) => boolean;
|
|
2560
2551
|
containsFocus: () => boolean;
|
|
@@ -2566,17 +2557,25 @@ export declare const TabsLocator: {
|
|
|
2566
2557
|
exists: () => boolean;
|
|
2567
2558
|
text: () => string | null;
|
|
2568
2559
|
empty: () => boolean;
|
|
2560
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2569
2561
|
descendants: (selector: string) => Element[];
|
|
2570
2562
|
ancestors: (selector: string) => ParentNode[];
|
|
2571
2563
|
attribute: (qualifiedName: string) => string | null;
|
|
2572
2564
|
style: (property: string) => string;
|
|
2573
2565
|
classNames: () => string[];
|
|
2566
|
+
id: () => string;
|
|
2567
|
+
matches: (selector: string | undefined) => boolean;
|
|
2574
2568
|
checked: () => any;
|
|
2575
2569
|
selected: () => any;
|
|
2570
|
+
disabled: () => string | null;
|
|
2576
2571
|
readonly: () => any;
|
|
2572
|
+
role: () => string | null;
|
|
2573
|
+
value: () => string | null;
|
|
2574
|
+
label: () => string | null | undefined;
|
|
2575
|
+
title: () => string | null | undefined;
|
|
2576
|
+
children: (selector: string) => Element[];
|
|
2577
2577
|
parents: (selector: string) => ParentNode[];
|
|
2578
2578
|
} & {
|
|
2579
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2580
2579
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2581
2580
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2582
2581
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2614,6 +2613,7 @@ export declare const TabsLocator: {
|
|
|
2614
2613
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2615
2614
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2616
2615
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2616
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2617
2617
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2618
2618
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2619
2619
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2662,29 +2662,19 @@ export declare const TabsLocator: {
|
|
|
2662
2662
|
findFrame: typeof import("@instructure/ui-test-queries/src/utils/queries").findFrame;
|
|
2663
2663
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
2664
2664
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
2665
|
-
} & {
|
|
2666
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
2667
|
-
highlight: boolean;
|
|
2668
|
-
} | undefined) => string;
|
|
2669
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2670
|
-
children: (selector: string) => Element[];
|
|
2671
|
-
title: () => string | null | undefined;
|
|
2672
|
-
id: () => string;
|
|
2673
|
-
tagName: () => string;
|
|
2674
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2675
|
-
getBoundingClientRect: () => DOMRect;
|
|
2676
|
-
matches: (selector: string | undefined) => boolean;
|
|
2665
|
+
} & {
|
|
2666
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
2667
|
+
highlight: boolean;
|
|
2668
|
+
} | undefined) => string;
|
|
2677
2669
|
visible: () => boolean;
|
|
2678
|
-
value: () => string | null;
|
|
2679
|
-
disabled: () => string | null;
|
|
2680
|
-
role: () => string | null;
|
|
2681
|
-
label: () => string | null | undefined;
|
|
2682
2670
|
getId: () => string;
|
|
2683
2671
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2684
2672
|
getOwnerDocument: () => Document;
|
|
2685
2673
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2686
2674
|
getTagName: () => string;
|
|
2675
|
+
tagName: () => string;
|
|
2687
2676
|
typeIn: (text: string) => Promise<void>;
|
|
2677
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2688
2678
|
getDOMNode: () => Element;
|
|
2689
2679
|
node: () => Element;
|
|
2690
2680
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2694,6 +2684,7 @@ export declare const TabsLocator: {
|
|
|
2694
2684
|
getTextContent: () => string | null;
|
|
2695
2685
|
getParentNode: () => ParentNode | null;
|
|
2696
2686
|
parent: () => ParentNode | null;
|
|
2687
|
+
getBoundingClientRect: () => DOMRect;
|
|
2697
2688
|
rect: () => DOMRect;
|
|
2698
2689
|
hasClass: (classname: string) => boolean;
|
|
2699
2690
|
containsFocus: () => boolean;
|
|
@@ -2705,17 +2696,25 @@ export declare const TabsLocator: {
|
|
|
2705
2696
|
exists: () => boolean;
|
|
2706
2697
|
text: () => string | null;
|
|
2707
2698
|
empty: () => boolean;
|
|
2699
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2708
2700
|
descendants: (selector: string) => Element[];
|
|
2709
2701
|
ancestors: (selector: string) => ParentNode[];
|
|
2710
2702
|
attribute: (qualifiedName: string) => string | null;
|
|
2711
2703
|
style: (property: string) => string;
|
|
2712
2704
|
classNames: () => string[];
|
|
2705
|
+
id: () => string;
|
|
2706
|
+
matches: (selector: string | undefined) => boolean;
|
|
2713
2707
|
checked: () => any;
|
|
2714
2708
|
selected: () => any;
|
|
2709
|
+
disabled: () => string | null;
|
|
2715
2710
|
readonly: () => any;
|
|
2711
|
+
role: () => string | null;
|
|
2712
|
+
value: () => string | null;
|
|
2713
|
+
label: () => string | null | undefined;
|
|
2714
|
+
title: () => string | null | undefined;
|
|
2715
|
+
children: (selector: string) => Element[];
|
|
2716
2716
|
parents: (selector: string) => ParentNode[];
|
|
2717
2717
|
} & {
|
|
2718
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2719
2718
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2720
2719
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2721
2720
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2753,6 +2752,7 @@ export declare const TabsLocator: {
|
|
|
2753
2752
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2754
2753
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2755
2754
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2755
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2756
2756
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2757
2757
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2758
2758
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2805,25 +2805,15 @@ export declare const TabsLocator: {
|
|
|
2805
2805
|
toString: (maxLength?: number | undefined, options?: {
|
|
2806
2806
|
highlight: boolean;
|
|
2807
2807
|
} | undefined) => string;
|
|
2808
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2809
|
-
children: (selector: string) => Element[];
|
|
2810
|
-
title: () => string | null | undefined;
|
|
2811
|
-
id: () => string;
|
|
2812
|
-
tagName: () => string;
|
|
2813
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2814
|
-
getBoundingClientRect: () => DOMRect;
|
|
2815
|
-
matches: (selector: string | undefined) => boolean;
|
|
2816
2808
|
visible: () => boolean;
|
|
2817
|
-
value: () => string | null;
|
|
2818
|
-
disabled: () => string | null;
|
|
2819
|
-
role: () => string | null;
|
|
2820
|
-
label: () => string | null | undefined;
|
|
2821
2809
|
getId: () => string;
|
|
2822
2810
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2823
2811
|
getOwnerDocument: () => Document;
|
|
2824
2812
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2825
2813
|
getTagName: () => string;
|
|
2814
|
+
tagName: () => string;
|
|
2826
2815
|
typeIn: (text: string) => Promise<void>;
|
|
2816
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2827
2817
|
getDOMNode: () => Element;
|
|
2828
2818
|
node: () => Element;
|
|
2829
2819
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2833,6 +2823,7 @@ export declare const TabsLocator: {
|
|
|
2833
2823
|
getTextContent: () => string | null;
|
|
2834
2824
|
getParentNode: () => ParentNode | null;
|
|
2835
2825
|
parent: () => ParentNode | null;
|
|
2826
|
+
getBoundingClientRect: () => DOMRect;
|
|
2836
2827
|
rect: () => DOMRect;
|
|
2837
2828
|
hasClass: (classname: string) => boolean;
|
|
2838
2829
|
containsFocus: () => boolean;
|
|
@@ -2844,17 +2835,25 @@ export declare const TabsLocator: {
|
|
|
2844
2835
|
exists: () => boolean;
|
|
2845
2836
|
text: () => string | null;
|
|
2846
2837
|
empty: () => boolean;
|
|
2838
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2847
2839
|
descendants: (selector: string) => Element[];
|
|
2848
2840
|
ancestors: (selector: string) => ParentNode[];
|
|
2849
2841
|
attribute: (qualifiedName: string) => string | null;
|
|
2850
2842
|
style: (property: string) => string;
|
|
2851
2843
|
classNames: () => string[];
|
|
2844
|
+
id: () => string;
|
|
2845
|
+
matches: (selector: string | undefined) => boolean;
|
|
2852
2846
|
checked: () => any;
|
|
2853
2847
|
selected: () => any;
|
|
2848
|
+
disabled: () => string | null;
|
|
2854
2849
|
readonly: () => any;
|
|
2850
|
+
role: () => string | null;
|
|
2851
|
+
value: () => string | null;
|
|
2852
|
+
label: () => string | null | undefined;
|
|
2853
|
+
title: () => string | null | undefined;
|
|
2854
|
+
children: (selector: string) => Element[];
|
|
2855
2855
|
parents: (selector: string) => ParentNode[];
|
|
2856
2856
|
} & {
|
|
2857
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2858
2857
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2859
2858
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2860
2859
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2892,6 +2891,7 @@ export declare const TabsLocator: {
|
|
|
2892
2891
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2893
2892
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2894
2893
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2894
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2895
2895
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2896
2896
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2897
2897
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2944,25 +2944,15 @@ export declare const TabsLocator: {
|
|
|
2944
2944
|
toString: (maxLength?: number | undefined, options?: {
|
|
2945
2945
|
highlight: boolean;
|
|
2946
2946
|
} | undefined) => string;
|
|
2947
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2948
|
-
children: (selector: string) => Element[];
|
|
2949
|
-
title: () => string | null | undefined;
|
|
2950
|
-
id: () => string;
|
|
2951
|
-
tagName: () => string;
|
|
2952
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2953
|
-
getBoundingClientRect: () => DOMRect;
|
|
2954
|
-
matches: (selector: string | undefined) => boolean;
|
|
2955
2947
|
visible: () => boolean;
|
|
2956
|
-
value: () => string | null;
|
|
2957
|
-
disabled: () => string | null;
|
|
2958
|
-
role: () => string | null;
|
|
2959
|
-
label: () => string | null | undefined;
|
|
2960
2948
|
getId: () => string;
|
|
2961
2949
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2962
2950
|
getOwnerDocument: () => Document;
|
|
2963
2951
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2964
2952
|
getTagName: () => string;
|
|
2953
|
+
tagName: () => string;
|
|
2965
2954
|
typeIn: (text: string) => Promise<void>;
|
|
2955
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2966
2956
|
getDOMNode: () => Element;
|
|
2967
2957
|
node: () => Element;
|
|
2968
2958
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2972,6 +2962,7 @@ export declare const TabsLocator: {
|
|
|
2972
2962
|
getTextContent: () => string | null;
|
|
2973
2963
|
getParentNode: () => ParentNode | null;
|
|
2974
2964
|
parent: () => ParentNode | null;
|
|
2965
|
+
getBoundingClientRect: () => DOMRect;
|
|
2975
2966
|
rect: () => DOMRect;
|
|
2976
2967
|
hasClass: (classname: string) => boolean;
|
|
2977
2968
|
containsFocus: () => boolean;
|
|
@@ -2983,17 +2974,25 @@ export declare const TabsLocator: {
|
|
|
2983
2974
|
exists: () => boolean;
|
|
2984
2975
|
text: () => string | null;
|
|
2985
2976
|
empty: () => boolean;
|
|
2977
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2986
2978
|
descendants: (selector: string) => Element[];
|
|
2987
2979
|
ancestors: (selector: string) => ParentNode[];
|
|
2988
2980
|
attribute: (qualifiedName: string) => string | null;
|
|
2989
2981
|
style: (property: string) => string;
|
|
2990
2982
|
classNames: () => string[];
|
|
2983
|
+
id: () => string;
|
|
2984
|
+
matches: (selector: string | undefined) => boolean;
|
|
2991
2985
|
checked: () => any;
|
|
2992
2986
|
selected: () => any;
|
|
2987
|
+
disabled: () => string | null;
|
|
2993
2988
|
readonly: () => any;
|
|
2989
|
+
role: () => string | null;
|
|
2990
|
+
value: () => string | null;
|
|
2991
|
+
label: () => string | null | undefined;
|
|
2992
|
+
title: () => string | null | undefined;
|
|
2993
|
+
children: (selector: string) => Element[];
|
|
2994
2994
|
parents: (selector: string) => ParentNode[];
|
|
2995
2995
|
} & {
|
|
2996
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2997
2996
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2998
2997
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2999
2998
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3031,6 +3030,7 @@ export declare const TabsLocator: {
|
|
|
3031
3030
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3032
3031
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3033
3032
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3033
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3034
3034
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3035
3035
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3036
3036
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3083,25 +3083,15 @@ export declare const TabsLocator: {
|
|
|
3083
3083
|
toString: (maxLength?: number | undefined, options?: {
|
|
3084
3084
|
highlight: boolean;
|
|
3085
3085
|
} | undefined) => string;
|
|
3086
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3087
|
-
children: (selector: string) => Element[];
|
|
3088
|
-
title: () => string | null | undefined;
|
|
3089
|
-
id: () => string;
|
|
3090
|
-
tagName: () => string;
|
|
3091
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3092
|
-
getBoundingClientRect: () => DOMRect;
|
|
3093
|
-
matches: (selector: string | undefined) => boolean;
|
|
3094
3086
|
visible: () => boolean;
|
|
3095
|
-
value: () => string | null;
|
|
3096
|
-
disabled: () => string | null;
|
|
3097
|
-
role: () => string | null;
|
|
3098
|
-
label: () => string | null | undefined;
|
|
3099
3087
|
getId: () => string;
|
|
3100
3088
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3101
3089
|
getOwnerDocument: () => Document;
|
|
3102
3090
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3103
3091
|
getTagName: () => string;
|
|
3092
|
+
tagName: () => string;
|
|
3104
3093
|
typeIn: (text: string) => Promise<void>;
|
|
3094
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3105
3095
|
getDOMNode: () => Element;
|
|
3106
3096
|
node: () => Element;
|
|
3107
3097
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3111,6 +3101,7 @@ export declare const TabsLocator: {
|
|
|
3111
3101
|
getTextContent: () => string | null;
|
|
3112
3102
|
getParentNode: () => ParentNode | null;
|
|
3113
3103
|
parent: () => ParentNode | null;
|
|
3104
|
+
getBoundingClientRect: () => DOMRect;
|
|
3114
3105
|
rect: () => DOMRect;
|
|
3115
3106
|
hasClass: (classname: string) => boolean;
|
|
3116
3107
|
containsFocus: () => boolean;
|
|
@@ -3122,17 +3113,25 @@ export declare const TabsLocator: {
|
|
|
3122
3113
|
exists: () => boolean;
|
|
3123
3114
|
text: () => string | null;
|
|
3124
3115
|
empty: () => boolean;
|
|
3116
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3125
3117
|
descendants: (selector: string) => Element[];
|
|
3126
3118
|
ancestors: (selector: string) => ParentNode[];
|
|
3127
3119
|
attribute: (qualifiedName: string) => string | null;
|
|
3128
3120
|
style: (property: string) => string;
|
|
3129
3121
|
classNames: () => string[];
|
|
3122
|
+
id: () => string;
|
|
3123
|
+
matches: (selector: string | undefined) => boolean;
|
|
3130
3124
|
checked: () => any;
|
|
3131
3125
|
selected: () => any;
|
|
3126
|
+
disabled: () => string | null;
|
|
3132
3127
|
readonly: () => any;
|
|
3128
|
+
role: () => string | null;
|
|
3129
|
+
value: () => string | null;
|
|
3130
|
+
label: () => string | null | undefined;
|
|
3131
|
+
title: () => string | null | undefined;
|
|
3132
|
+
children: (selector: string) => Element[];
|
|
3133
3133
|
parents: (selector: string) => ParentNode[];
|
|
3134
3134
|
} & {
|
|
3135
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3136
3135
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3137
3136
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3138
3137
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3170,6 +3169,7 @@ export declare const TabsLocator: {
|
|
|
3170
3169
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3171
3170
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3172
3171
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3172
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3173
3173
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3174
3174
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3175
3175
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3223,25 +3223,15 @@ export declare const TabsLocator: {
|
|
|
3223
3223
|
toString: (maxLength?: number | undefined, options?: {
|
|
3224
3224
|
highlight: boolean;
|
|
3225
3225
|
} | undefined) => string;
|
|
3226
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3227
|
-
children: (selector: string) => Element[];
|
|
3228
|
-
title: () => string | null | undefined;
|
|
3229
|
-
id: () => string;
|
|
3230
|
-
tagName: () => string;
|
|
3231
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3232
|
-
getBoundingClientRect: () => DOMRect;
|
|
3233
|
-
matches: (selector: string | undefined) => boolean;
|
|
3234
3226
|
visible: () => boolean;
|
|
3235
|
-
value: () => string | null;
|
|
3236
|
-
disabled: () => string | null;
|
|
3237
|
-
role: () => string | null;
|
|
3238
|
-
label: () => string | null | undefined;
|
|
3239
3227
|
getId: () => string;
|
|
3240
3228
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3241
3229
|
getOwnerDocument: () => Document;
|
|
3242
3230
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3243
3231
|
getTagName: () => string;
|
|
3232
|
+
tagName: () => string;
|
|
3244
3233
|
typeIn: (text: string) => Promise<void>;
|
|
3234
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3245
3235
|
getDOMNode: () => Element;
|
|
3246
3236
|
node: () => Element;
|
|
3247
3237
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3251,6 +3241,7 @@ export declare const TabsLocator: {
|
|
|
3251
3241
|
getTextContent: () => string | null;
|
|
3252
3242
|
getParentNode: () => ParentNode | null;
|
|
3253
3243
|
parent: () => ParentNode | null;
|
|
3244
|
+
getBoundingClientRect: () => DOMRect;
|
|
3254
3245
|
rect: () => DOMRect;
|
|
3255
3246
|
hasClass: (classname: string) => boolean;
|
|
3256
3247
|
containsFocus: () => boolean;
|
|
@@ -3262,17 +3253,25 @@ export declare const TabsLocator: {
|
|
|
3262
3253
|
exists: () => boolean;
|
|
3263
3254
|
text: () => string | null;
|
|
3264
3255
|
empty: () => boolean;
|
|
3256
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3265
3257
|
descendants: (selector: string) => Element[];
|
|
3266
3258
|
ancestors: (selector: string) => ParentNode[];
|
|
3267
3259
|
attribute: (qualifiedName: string) => string | null;
|
|
3268
3260
|
style: (property: string) => string;
|
|
3269
3261
|
classNames: () => string[];
|
|
3262
|
+
id: () => string;
|
|
3263
|
+
matches: (selector: string | undefined) => boolean;
|
|
3270
3264
|
checked: () => any;
|
|
3271
3265
|
selected: () => any;
|
|
3266
|
+
disabled: () => string | null;
|
|
3272
3267
|
readonly: () => any;
|
|
3268
|
+
role: () => string | null;
|
|
3269
|
+
value: () => string | null;
|
|
3270
|
+
label: () => string | null | undefined;
|
|
3271
|
+
title: () => string | null | undefined;
|
|
3272
|
+
children: (selector: string) => Element[];
|
|
3273
3273
|
parents: (selector: string) => ParentNode[];
|
|
3274
3274
|
} & {
|
|
3275
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3276
3275
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3277
3276
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3278
3277
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3310,6 +3309,7 @@ export declare const TabsLocator: {
|
|
|
3310
3309
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3311
3310
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3312
3311
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3312
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3313
3313
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3314
3314
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3315
3315
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3362,25 +3362,15 @@ export declare const TabsLocator: {
|
|
|
3362
3362
|
toString: (maxLength?: number | undefined, options?: {
|
|
3363
3363
|
highlight: boolean;
|
|
3364
3364
|
} | undefined) => string;
|
|
3365
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3366
|
-
children: (selector: string) => Element[];
|
|
3367
|
-
title: () => string | null | undefined;
|
|
3368
|
-
id: () => string;
|
|
3369
|
-
tagName: () => string;
|
|
3370
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3371
|
-
getBoundingClientRect: () => DOMRect;
|
|
3372
|
-
matches: (selector: string | undefined) => boolean;
|
|
3373
3365
|
visible: () => boolean;
|
|
3374
|
-
value: () => string | null;
|
|
3375
|
-
disabled: () => string | null;
|
|
3376
|
-
role: () => string | null;
|
|
3377
|
-
label: () => string | null | undefined;
|
|
3378
3366
|
getId: () => string;
|
|
3379
3367
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3380
3368
|
getOwnerDocument: () => Document;
|
|
3381
3369
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3382
3370
|
getTagName: () => string;
|
|
3371
|
+
tagName: () => string;
|
|
3383
3372
|
typeIn: (text: string) => Promise<void>;
|
|
3373
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3384
3374
|
getDOMNode: () => Element;
|
|
3385
3375
|
node: () => Element;
|
|
3386
3376
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3390,6 +3380,7 @@ export declare const TabsLocator: {
|
|
|
3390
3380
|
getTextContent: () => string | null;
|
|
3391
3381
|
getParentNode: () => ParentNode | null;
|
|
3392
3382
|
parent: () => ParentNode | null;
|
|
3383
|
+
getBoundingClientRect: () => DOMRect;
|
|
3393
3384
|
rect: () => DOMRect;
|
|
3394
3385
|
hasClass: (classname: string) => boolean;
|
|
3395
3386
|
containsFocus: () => boolean;
|
|
@@ -3401,17 +3392,25 @@ export declare const TabsLocator: {
|
|
|
3401
3392
|
exists: () => boolean;
|
|
3402
3393
|
text: () => string | null;
|
|
3403
3394
|
empty: () => boolean;
|
|
3395
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3404
3396
|
descendants: (selector: string) => Element[];
|
|
3405
3397
|
ancestors: (selector: string) => ParentNode[];
|
|
3406
3398
|
attribute: (qualifiedName: string) => string | null;
|
|
3407
3399
|
style: (property: string) => string;
|
|
3408
3400
|
classNames: () => string[];
|
|
3401
|
+
id: () => string;
|
|
3402
|
+
matches: (selector: string | undefined) => boolean;
|
|
3409
3403
|
checked: () => any;
|
|
3410
3404
|
selected: () => any;
|
|
3405
|
+
disabled: () => string | null;
|
|
3411
3406
|
readonly: () => any;
|
|
3407
|
+
role: () => string | null;
|
|
3408
|
+
value: () => string | null;
|
|
3409
|
+
label: () => string | null | undefined;
|
|
3410
|
+
title: () => string | null | undefined;
|
|
3411
|
+
children: (selector: string) => Element[];
|
|
3412
3412
|
parents: (selector: string) => ParentNode[];
|
|
3413
3413
|
} & {
|
|
3414
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3415
3414
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3416
3415
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3417
3416
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3449,6 +3448,7 @@ export declare const TabsLocator: {
|
|
|
3449
3448
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3450
3449
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3451
3450
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3451
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3452
3452
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3453
3453
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3454
3454
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3501,25 +3501,15 @@ export declare const TabsLocator: {
|
|
|
3501
3501
|
toString: (maxLength?: number | undefined, options?: {
|
|
3502
3502
|
highlight: boolean;
|
|
3503
3503
|
} | undefined) => string;
|
|
3504
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3505
|
-
children: (selector: string) => Element[];
|
|
3506
|
-
title: () => string | null | undefined;
|
|
3507
|
-
id: () => string;
|
|
3508
|
-
tagName: () => string;
|
|
3509
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3510
|
-
getBoundingClientRect: () => DOMRect;
|
|
3511
|
-
matches: (selector: string | undefined) => boolean;
|
|
3512
3504
|
visible: () => boolean;
|
|
3513
|
-
value: () => string | null;
|
|
3514
|
-
disabled: () => string | null;
|
|
3515
|
-
role: () => string | null;
|
|
3516
|
-
label: () => string | null | undefined;
|
|
3517
3505
|
getId: () => string;
|
|
3518
3506
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3519
3507
|
getOwnerDocument: () => Document;
|
|
3520
3508
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3521
3509
|
getTagName: () => string;
|
|
3510
|
+
tagName: () => string;
|
|
3522
3511
|
typeIn: (text: string) => Promise<void>;
|
|
3512
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3523
3513
|
getDOMNode: () => Element;
|
|
3524
3514
|
node: () => Element;
|
|
3525
3515
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3529,6 +3519,7 @@ export declare const TabsLocator: {
|
|
|
3529
3519
|
getTextContent: () => string | null;
|
|
3530
3520
|
getParentNode: () => ParentNode | null;
|
|
3531
3521
|
parent: () => ParentNode | null;
|
|
3522
|
+
getBoundingClientRect: () => DOMRect;
|
|
3532
3523
|
rect: () => DOMRect;
|
|
3533
3524
|
hasClass: (classname: string) => boolean;
|
|
3534
3525
|
containsFocus: () => boolean;
|
|
@@ -3540,17 +3531,25 @@ export declare const TabsLocator: {
|
|
|
3540
3531
|
exists: () => boolean;
|
|
3541
3532
|
text: () => string | null;
|
|
3542
3533
|
empty: () => boolean;
|
|
3534
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3543
3535
|
descendants: (selector: string) => Element[];
|
|
3544
3536
|
ancestors: (selector: string) => ParentNode[];
|
|
3545
3537
|
attribute: (qualifiedName: string) => string | null;
|
|
3546
3538
|
style: (property: string) => string;
|
|
3547
3539
|
classNames: () => string[];
|
|
3540
|
+
id: () => string;
|
|
3541
|
+
matches: (selector: string | undefined) => boolean;
|
|
3548
3542
|
checked: () => any;
|
|
3549
3543
|
selected: () => any;
|
|
3544
|
+
disabled: () => string | null;
|
|
3550
3545
|
readonly: () => any;
|
|
3546
|
+
role: () => string | null;
|
|
3547
|
+
value: () => string | null;
|
|
3548
|
+
label: () => string | null | undefined;
|
|
3549
|
+
title: () => string | null | undefined;
|
|
3550
|
+
children: (selector: string) => Element[];
|
|
3551
3551
|
parents: (selector: string) => ParentNode[];
|
|
3552
3552
|
} & {
|
|
3553
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3554
3553
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3555
3554
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3556
3555
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3588,6 +3587,7 @@ export declare const TabsLocator: {
|
|
|
3588
3587
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3589
3588
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3590
3589
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3590
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3591
3591
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3592
3592
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3593
3593
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3640,25 +3640,15 @@ export declare const TabsLocator: {
|
|
|
3640
3640
|
toString: (maxLength?: number | undefined, options?: {
|
|
3641
3641
|
highlight: boolean;
|
|
3642
3642
|
} | undefined) => string;
|
|
3643
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3644
|
-
children: (selector: string) => Element[];
|
|
3645
|
-
title: () => string | null | undefined;
|
|
3646
|
-
id: () => string;
|
|
3647
|
-
tagName: () => string;
|
|
3648
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3649
|
-
getBoundingClientRect: () => DOMRect;
|
|
3650
|
-
matches: (selector: string | undefined) => boolean;
|
|
3651
3643
|
visible: () => boolean;
|
|
3652
|
-
value: () => string | null;
|
|
3653
|
-
disabled: () => string | null;
|
|
3654
|
-
role: () => string | null;
|
|
3655
|
-
label: () => string | null | undefined;
|
|
3656
3644
|
getId: () => string;
|
|
3657
3645
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3658
3646
|
getOwnerDocument: () => Document;
|
|
3659
3647
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3660
3648
|
getTagName: () => string;
|
|
3649
|
+
tagName: () => string;
|
|
3661
3650
|
typeIn: (text: string) => Promise<void>;
|
|
3651
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3662
3652
|
getDOMNode: () => Element;
|
|
3663
3653
|
node: () => Element;
|
|
3664
3654
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3668,6 +3658,7 @@ export declare const TabsLocator: {
|
|
|
3668
3658
|
getTextContent: () => string | null;
|
|
3669
3659
|
getParentNode: () => ParentNode | null;
|
|
3670
3660
|
parent: () => ParentNode | null;
|
|
3661
|
+
getBoundingClientRect: () => DOMRect;
|
|
3671
3662
|
rect: () => DOMRect;
|
|
3672
3663
|
hasClass: (classname: string) => boolean;
|
|
3673
3664
|
containsFocus: () => boolean;
|
|
@@ -3679,17 +3670,25 @@ export declare const TabsLocator: {
|
|
|
3679
3670
|
exists: () => boolean;
|
|
3680
3671
|
text: () => string | null;
|
|
3681
3672
|
empty: () => boolean;
|
|
3673
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3682
3674
|
descendants: (selector: string) => Element[];
|
|
3683
3675
|
ancestors: (selector: string) => ParentNode[];
|
|
3684
3676
|
attribute: (qualifiedName: string) => string | null;
|
|
3685
3677
|
style: (property: string) => string;
|
|
3686
3678
|
classNames: () => string[];
|
|
3679
|
+
id: () => string;
|
|
3680
|
+
matches: (selector: string | undefined) => boolean;
|
|
3687
3681
|
checked: () => any;
|
|
3688
3682
|
selected: () => any;
|
|
3683
|
+
disabled: () => string | null;
|
|
3689
3684
|
readonly: () => any;
|
|
3685
|
+
role: () => string | null;
|
|
3686
|
+
value: () => string | null;
|
|
3687
|
+
label: () => string | null | undefined;
|
|
3688
|
+
title: () => string | null | undefined;
|
|
3689
|
+
children: (selector: string) => Element[];
|
|
3690
3690
|
parents: (selector: string) => ParentNode[];
|
|
3691
3691
|
} & {
|
|
3692
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3693
3692
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3694
3693
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3695
3694
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3727,6 +3726,7 @@ export declare const TabsLocator: {
|
|
|
3727
3726
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3728
3727
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3729
3728
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3729
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3730
3730
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3731
3731
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3732
3732
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3779,25 +3779,15 @@ export declare const TabsLocator: {
|
|
|
3779
3779
|
toString: (maxLength?: number | undefined, options?: {
|
|
3780
3780
|
highlight: boolean;
|
|
3781
3781
|
} | undefined) => string;
|
|
3782
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3783
|
-
children: (selector: string) => Element[];
|
|
3784
|
-
title: () => string | null | undefined;
|
|
3785
|
-
id: () => string;
|
|
3786
|
-
tagName: () => string;
|
|
3787
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3788
|
-
getBoundingClientRect: () => DOMRect;
|
|
3789
|
-
matches: (selector: string | undefined) => boolean;
|
|
3790
3782
|
visible: () => boolean;
|
|
3791
|
-
value: () => string | null;
|
|
3792
|
-
disabled: () => string | null;
|
|
3793
|
-
role: () => string | null;
|
|
3794
|
-
label: () => string | null | undefined;
|
|
3795
3783
|
getId: () => string;
|
|
3796
3784
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3797
3785
|
getOwnerDocument: () => Document;
|
|
3798
3786
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3799
3787
|
getTagName: () => string;
|
|
3788
|
+
tagName: () => string;
|
|
3800
3789
|
typeIn: (text: string) => Promise<void>;
|
|
3790
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3801
3791
|
getDOMNode: () => Element;
|
|
3802
3792
|
node: () => Element;
|
|
3803
3793
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3807,6 +3797,7 @@ export declare const TabsLocator: {
|
|
|
3807
3797
|
getTextContent: () => string | null;
|
|
3808
3798
|
getParentNode: () => ParentNode | null;
|
|
3809
3799
|
parent: () => ParentNode | null;
|
|
3800
|
+
getBoundingClientRect: () => DOMRect;
|
|
3810
3801
|
rect: () => DOMRect;
|
|
3811
3802
|
hasClass: (classname: string) => boolean;
|
|
3812
3803
|
containsFocus: () => boolean;
|
|
@@ -3818,17 +3809,25 @@ export declare const TabsLocator: {
|
|
|
3818
3809
|
exists: () => boolean;
|
|
3819
3810
|
text: () => string | null;
|
|
3820
3811
|
empty: () => boolean;
|
|
3812
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3821
3813
|
descendants: (selector: string) => Element[];
|
|
3822
3814
|
ancestors: (selector: string) => ParentNode[];
|
|
3823
3815
|
attribute: (qualifiedName: string) => string | null;
|
|
3824
3816
|
style: (property: string) => string;
|
|
3825
3817
|
classNames: () => string[];
|
|
3818
|
+
id: () => string;
|
|
3819
|
+
matches: (selector: string | undefined) => boolean;
|
|
3826
3820
|
checked: () => any;
|
|
3827
3821
|
selected: () => any;
|
|
3822
|
+
disabled: () => string | null;
|
|
3828
3823
|
readonly: () => any;
|
|
3824
|
+
role: () => string | null;
|
|
3825
|
+
value: () => string | null;
|
|
3826
|
+
label: () => string | null | undefined;
|
|
3827
|
+
title: () => string | null | undefined;
|
|
3828
|
+
children: (selector: string) => Element[];
|
|
3829
3829
|
parents: (selector: string) => ParentNode[];
|
|
3830
3830
|
} & {
|
|
3831
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3832
3831
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3833
3832
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3834
3833
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3866,6 +3865,7 @@ export declare const TabsLocator: {
|
|
|
3866
3865
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3867
3866
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3868
3867
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3868
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3869
3869
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3870
3870
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3871
3871
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3918,25 +3918,15 @@ export declare const TabsLocator: {
|
|
|
3918
3918
|
toString: (maxLength?: number | undefined, options?: {
|
|
3919
3919
|
highlight: boolean;
|
|
3920
3920
|
} | undefined) => string;
|
|
3921
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3922
|
-
children: (selector: string) => Element[];
|
|
3923
|
-
title: () => string | null | undefined;
|
|
3924
|
-
id: () => string;
|
|
3925
|
-
tagName: () => string;
|
|
3926
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3927
|
-
getBoundingClientRect: () => DOMRect;
|
|
3928
|
-
matches: (selector: string | undefined) => boolean;
|
|
3929
3921
|
visible: () => boolean;
|
|
3930
|
-
value: () => string | null;
|
|
3931
|
-
disabled: () => string | null;
|
|
3932
|
-
role: () => string | null;
|
|
3933
|
-
label: () => string | null | undefined;
|
|
3934
3922
|
getId: () => string;
|
|
3935
3923
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3936
3924
|
getOwnerDocument: () => Document;
|
|
3937
3925
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3938
3926
|
getTagName: () => string;
|
|
3927
|
+
tagName: () => string;
|
|
3939
3928
|
typeIn: (text: string) => Promise<void>;
|
|
3929
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3940
3930
|
getDOMNode: () => Element;
|
|
3941
3931
|
node: () => Element;
|
|
3942
3932
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3946,6 +3936,7 @@ export declare const TabsLocator: {
|
|
|
3946
3936
|
getTextContent: () => string | null;
|
|
3947
3937
|
getParentNode: () => ParentNode | null;
|
|
3948
3938
|
parent: () => ParentNode | null;
|
|
3939
|
+
getBoundingClientRect: () => DOMRect;
|
|
3949
3940
|
rect: () => DOMRect;
|
|
3950
3941
|
hasClass: (classname: string) => boolean;
|
|
3951
3942
|
containsFocus: () => boolean;
|
|
@@ -3957,17 +3948,25 @@ export declare const TabsLocator: {
|
|
|
3957
3948
|
exists: () => boolean;
|
|
3958
3949
|
text: () => string | null;
|
|
3959
3950
|
empty: () => boolean;
|
|
3951
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3960
3952
|
descendants: (selector: string) => Element[];
|
|
3961
3953
|
ancestors: (selector: string) => ParentNode[];
|
|
3962
3954
|
attribute: (qualifiedName: string) => string | null;
|
|
3963
3955
|
style: (property: string) => string;
|
|
3964
3956
|
classNames: () => string[];
|
|
3957
|
+
id: () => string;
|
|
3958
|
+
matches: (selector: string | undefined) => boolean;
|
|
3965
3959
|
checked: () => any;
|
|
3966
3960
|
selected: () => any;
|
|
3961
|
+
disabled: () => string | null;
|
|
3967
3962
|
readonly: () => any;
|
|
3963
|
+
role: () => string | null;
|
|
3964
|
+
value: () => string | null;
|
|
3965
|
+
label: () => string | null | undefined;
|
|
3966
|
+
title: () => string | null | undefined;
|
|
3967
|
+
children: (selector: string) => Element[];
|
|
3968
3968
|
parents: (selector: string) => ParentNode[];
|
|
3969
3969
|
} & {
|
|
3970
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3971
3970
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3972
3971
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3973
3972
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4005,6 +4004,7 @@ export declare const TabsLocator: {
|
|
|
4005
4004
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4006
4005
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4007
4006
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4007
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4008
4008
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4009
4009
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4010
4010
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|