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