@instructure/ui-menu 8.13.1-snapshot.9 → 8.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/es/Menu/MenuItem/index.js +28 -21
- package/es/Menu/MenuItem/props.js +0 -23
- package/es/Menu/MenuItemGroup/index.js +17 -13
- package/es/Menu/MenuItemGroup/props.js +1 -30
- package/es/Menu/MenuItemSeparator/index.js +6 -2
- package/es/Menu/index.js +59 -56
- package/es/Menu/props.js +1 -113
- package/es/MenuContext.js +3 -3
- package/lib/Menu/MenuItem/index.js +28 -21
- package/lib/Menu/MenuItem/props.js +0 -23
- package/lib/Menu/MenuItemGroup/index.js +17 -13
- package/lib/Menu/MenuItemGroup/props.js +1 -30
- package/lib/Menu/MenuItemSeparator/index.js +6 -2
- package/lib/Menu/index.js +61 -56
- package/lib/Menu/props.js +1 -113
- package/lib/MenuContext.js +2 -2
- package/package.json +21 -22
- package/src/Menu/MenuItem/index.tsx +24 -34
- package/src/Menu/MenuItem/props.ts +36 -27
- package/src/Menu/MenuItemGroup/index.tsx +28 -48
- package/src/Menu/MenuItemGroup/props.ts +37 -30
- package/src/Menu/MenuItemSeparator/index.tsx +2 -4
- package/src/Menu/index.tsx +81 -135
- package/src/Menu/props.ts +79 -84
- package/src/MenuContext.ts +3 -2
- package/tsconfig.build.json +25 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/Menu/MenuItem/MenuItemLocator.d.ts +52 -52
- package/types/Menu/MenuItem/index.d.ts +24 -23
- package/types/Menu/MenuItem/index.d.ts.map +1 -1
- package/types/Menu/MenuItem/props.d.ts +30 -7
- package/types/Menu/MenuItem/props.d.ts.map +1 -1
- package/types/Menu/MenuItemGroup/MenuItemGroupLocator.d.ts +182 -182
- package/types/Menu/MenuItemGroup/index.d.ts +22 -22
- package/types/Menu/MenuItemGroup/index.d.ts.map +1 -1
- package/types/Menu/MenuItemGroup/props.d.ts +33 -8
- package/types/Menu/MenuItemGroup/props.d.ts.map +1 -1
- package/types/Menu/MenuItemSeparator/index.d.ts.map +1 -1
- package/types/Menu/MenuLocator.d.ts +576 -576
- package/types/Menu/index.d.ts +58 -68
- package/types/Menu/index.d.ts.map +1 -1
- package/types/Menu/props.d.ts +94 -16
- package/types/Menu/props.d.ts.map +1 -1
- package/types/MenuContext.d.ts +3 -2
- package/types/MenuContext.d.ts.map +1 -1
- package/LICENSE.md +0 -27
|
@@ -18,25 +18,15 @@ declare const MenuLocator: {
|
|
|
18
18
|
toString: (maxLength?: number | undefined, options?: {
|
|
19
19
|
highlight: boolean;
|
|
20
20
|
} | undefined) => string;
|
|
21
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
22
|
-
children: (selector: string) => Element[];
|
|
23
|
-
title: () => string | null | undefined;
|
|
24
|
-
id: () => string;
|
|
25
|
-
tagName: () => string;
|
|
26
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
27
|
-
getBoundingClientRect: () => DOMRect;
|
|
28
|
-
matches: (selector: string | undefined) => boolean;
|
|
29
21
|
visible: () => boolean;
|
|
30
|
-
value: () => string | null;
|
|
31
|
-
disabled: () => string | null;
|
|
32
|
-
role: () => string | null;
|
|
33
|
-
label: () => string | null | undefined;
|
|
34
22
|
getId: () => string;
|
|
35
23
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
36
24
|
getOwnerDocument: () => Document;
|
|
37
25
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
38
26
|
getTagName: () => string;
|
|
27
|
+
tagName: () => string;
|
|
39
28
|
typeIn: (text: string) => Promise<void>;
|
|
29
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
40
30
|
getDOMNode: () => Element;
|
|
41
31
|
node: () => Element;
|
|
42
32
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -46,6 +36,7 @@ declare const MenuLocator: {
|
|
|
46
36
|
getTextContent: () => string | null;
|
|
47
37
|
getParentNode: () => ParentNode | null;
|
|
48
38
|
parent: () => ParentNode | null;
|
|
39
|
+
getBoundingClientRect: () => DOMRect;
|
|
49
40
|
rect: () => DOMRect;
|
|
50
41
|
hasClass: (classname: string) => boolean;
|
|
51
42
|
containsFocus: () => boolean;
|
|
@@ -57,17 +48,25 @@ declare const MenuLocator: {
|
|
|
57
48
|
exists: () => boolean;
|
|
58
49
|
text: () => string | null;
|
|
59
50
|
empty: () => boolean;
|
|
51
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
60
52
|
descendants: (selector: string) => Element[];
|
|
61
53
|
ancestors: (selector: string) => ParentNode[];
|
|
62
54
|
attribute: (qualifiedName: string) => string | null;
|
|
63
55
|
style: (property: string) => string;
|
|
64
56
|
classNames: () => string[];
|
|
57
|
+
id: () => string;
|
|
58
|
+
matches: (selector: string | undefined) => boolean;
|
|
65
59
|
checked: () => any;
|
|
66
60
|
selected: () => any;
|
|
61
|
+
disabled: () => string | null;
|
|
67
62
|
readonly: () => any;
|
|
63
|
+
role: () => string | null;
|
|
64
|
+
value: () => string | null;
|
|
65
|
+
label: () => string | null | undefined;
|
|
66
|
+
title: () => string | null | undefined;
|
|
67
|
+
children: (selector: string) => Element[];
|
|
68
68
|
parents: (selector: string) => ParentNode[];
|
|
69
69
|
} & {
|
|
70
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
71
70
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
72
71
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
73
72
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -105,6 +104,7 @@ declare const MenuLocator: {
|
|
|
105
104
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
106
105
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
107
106
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
107
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
108
108
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
109
109
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
110
110
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -157,25 +157,15 @@ declare const MenuLocator: {
|
|
|
157
157
|
toString: (maxLength?: number | undefined, options?: {
|
|
158
158
|
highlight: boolean;
|
|
159
159
|
} | undefined) => string;
|
|
160
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
161
|
-
children: (selector: string) => Element[];
|
|
162
|
-
title: () => string | null | undefined;
|
|
163
|
-
id: () => string;
|
|
164
|
-
tagName: () => string;
|
|
165
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
166
|
-
getBoundingClientRect: () => DOMRect;
|
|
167
|
-
matches: (selector: string | undefined) => boolean;
|
|
168
160
|
visible: () => boolean;
|
|
169
|
-
value: () => string | null;
|
|
170
|
-
disabled: () => string | null;
|
|
171
|
-
role: () => string | null;
|
|
172
|
-
label: () => string | null | undefined;
|
|
173
161
|
getId: () => string;
|
|
174
162
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
175
163
|
getOwnerDocument: () => Document;
|
|
176
164
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
177
165
|
getTagName: () => string;
|
|
166
|
+
tagName: () => string;
|
|
178
167
|
typeIn: (text: string) => Promise<void>;
|
|
168
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
179
169
|
getDOMNode: () => Element;
|
|
180
170
|
node: () => Element;
|
|
181
171
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -185,6 +175,7 @@ declare const MenuLocator: {
|
|
|
185
175
|
getTextContent: () => string | null;
|
|
186
176
|
getParentNode: () => ParentNode | null;
|
|
187
177
|
parent: () => ParentNode | null;
|
|
178
|
+
getBoundingClientRect: () => DOMRect;
|
|
188
179
|
rect: () => DOMRect;
|
|
189
180
|
hasClass: (classname: string) => boolean;
|
|
190
181
|
containsFocus: () => boolean;
|
|
@@ -196,17 +187,25 @@ declare const MenuLocator: {
|
|
|
196
187
|
exists: () => boolean;
|
|
197
188
|
text: () => string | null;
|
|
198
189
|
empty: () => boolean;
|
|
190
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
199
191
|
descendants: (selector: string) => Element[];
|
|
200
192
|
ancestors: (selector: string) => ParentNode[];
|
|
201
193
|
attribute: (qualifiedName: string) => string | null;
|
|
202
194
|
style: (property: string) => string;
|
|
203
195
|
classNames: () => string[];
|
|
196
|
+
id: () => string;
|
|
197
|
+
matches: (selector: string | undefined) => boolean;
|
|
204
198
|
checked: () => any;
|
|
205
199
|
selected: () => any;
|
|
200
|
+
disabled: () => string | null;
|
|
206
201
|
readonly: () => any;
|
|
202
|
+
role: () => string | null;
|
|
203
|
+
value: () => string | null;
|
|
204
|
+
label: () => string | null | undefined;
|
|
205
|
+
title: () => string | null | undefined;
|
|
206
|
+
children: (selector: string) => Element[];
|
|
207
207
|
parents: (selector: string) => ParentNode[];
|
|
208
208
|
} & {
|
|
209
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
210
209
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
211
210
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
212
211
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -244,6 +243,7 @@ declare const MenuLocator: {
|
|
|
244
243
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
244
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
245
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
247
247
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
248
248
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
249
249
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -296,25 +296,15 @@ declare const MenuLocator: {
|
|
|
296
296
|
toString: (maxLength?: number | undefined, options?: {
|
|
297
297
|
highlight: boolean;
|
|
298
298
|
} | undefined) => string;
|
|
299
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
300
|
-
children: (selector: string) => Element[];
|
|
301
|
-
title: () => string | null | undefined;
|
|
302
|
-
id: () => string;
|
|
303
|
-
tagName: () => string;
|
|
304
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
305
|
-
getBoundingClientRect: () => DOMRect;
|
|
306
|
-
matches: (selector: string | undefined) => boolean;
|
|
307
299
|
visible: () => boolean;
|
|
308
|
-
value: () => string | null;
|
|
309
|
-
disabled: () => string | null;
|
|
310
|
-
role: () => string | null;
|
|
311
|
-
label: () => string | null | undefined;
|
|
312
300
|
getId: () => string;
|
|
313
301
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
314
302
|
getOwnerDocument: () => Document;
|
|
315
303
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
316
304
|
getTagName: () => string;
|
|
305
|
+
tagName: () => string;
|
|
317
306
|
typeIn: (text: string) => Promise<void>;
|
|
307
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
318
308
|
getDOMNode: () => Element;
|
|
319
309
|
node: () => Element;
|
|
320
310
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -324,6 +314,7 @@ declare const MenuLocator: {
|
|
|
324
314
|
getTextContent: () => string | null;
|
|
325
315
|
getParentNode: () => ParentNode | null;
|
|
326
316
|
parent: () => ParentNode | null;
|
|
317
|
+
getBoundingClientRect: () => DOMRect;
|
|
327
318
|
rect: () => DOMRect;
|
|
328
319
|
hasClass: (classname: string) => boolean;
|
|
329
320
|
containsFocus: () => boolean;
|
|
@@ -335,17 +326,25 @@ declare const MenuLocator: {
|
|
|
335
326
|
exists: () => boolean;
|
|
336
327
|
text: () => string | null;
|
|
337
328
|
empty: () => boolean;
|
|
329
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
338
330
|
descendants: (selector: string) => Element[];
|
|
339
331
|
ancestors: (selector: string) => ParentNode[];
|
|
340
332
|
attribute: (qualifiedName: string) => string | null;
|
|
341
333
|
style: (property: string) => string;
|
|
342
334
|
classNames: () => string[];
|
|
335
|
+
id: () => string;
|
|
336
|
+
matches: (selector: string | undefined) => boolean;
|
|
343
337
|
checked: () => any;
|
|
344
338
|
selected: () => any;
|
|
339
|
+
disabled: () => string | null;
|
|
345
340
|
readonly: () => any;
|
|
341
|
+
role: () => string | null;
|
|
342
|
+
value: () => string | null;
|
|
343
|
+
label: () => string | null | undefined;
|
|
344
|
+
title: () => string | null | undefined;
|
|
345
|
+
children: (selector: string) => Element[];
|
|
346
346
|
parents: (selector: string) => ParentNode[];
|
|
347
347
|
} & {
|
|
348
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
349
348
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
350
349
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
351
350
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -383,6 +382,7 @@ declare const MenuLocator: {
|
|
|
383
382
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
384
383
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
385
384
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
385
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
386
386
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
387
387
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
388
388
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -435,25 +435,15 @@ declare const MenuLocator: {
|
|
|
435
435
|
toString: (maxLength?: number | undefined, options?: {
|
|
436
436
|
highlight: boolean;
|
|
437
437
|
} | undefined) => string;
|
|
438
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
439
|
-
children: (selector: string) => Element[];
|
|
440
|
-
title: () => string | null | undefined;
|
|
441
|
-
id: () => string;
|
|
442
|
-
tagName: () => string;
|
|
443
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
444
|
-
getBoundingClientRect: () => DOMRect;
|
|
445
|
-
matches: (selector: string | undefined) => boolean;
|
|
446
438
|
visible: () => boolean;
|
|
447
|
-
value: () => string | null;
|
|
448
|
-
disabled: () => string | null;
|
|
449
|
-
role: () => string | null;
|
|
450
|
-
label: () => string | null | undefined;
|
|
451
439
|
getId: () => string;
|
|
452
440
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
453
441
|
getOwnerDocument: () => Document;
|
|
454
442
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
455
443
|
getTagName: () => string;
|
|
444
|
+
tagName: () => string;
|
|
456
445
|
typeIn: (text: string) => Promise<void>;
|
|
446
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
457
447
|
getDOMNode: () => Element;
|
|
458
448
|
node: () => Element;
|
|
459
449
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -463,6 +453,7 @@ declare const MenuLocator: {
|
|
|
463
453
|
getTextContent: () => string | null;
|
|
464
454
|
getParentNode: () => ParentNode | null;
|
|
465
455
|
parent: () => ParentNode | null;
|
|
456
|
+
getBoundingClientRect: () => DOMRect;
|
|
466
457
|
rect: () => DOMRect;
|
|
467
458
|
hasClass: (classname: string) => boolean;
|
|
468
459
|
containsFocus: () => boolean;
|
|
@@ -474,17 +465,25 @@ declare const MenuLocator: {
|
|
|
474
465
|
exists: () => boolean;
|
|
475
466
|
text: () => string | null;
|
|
476
467
|
empty: () => boolean;
|
|
468
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
477
469
|
descendants: (selector: string) => Element[];
|
|
478
470
|
ancestors: (selector: string) => ParentNode[];
|
|
479
471
|
attribute: (qualifiedName: string) => string | null;
|
|
480
472
|
style: (property: string) => string;
|
|
481
473
|
classNames: () => string[];
|
|
474
|
+
id: () => string;
|
|
475
|
+
matches: (selector: string | undefined) => boolean;
|
|
482
476
|
checked: () => any;
|
|
483
477
|
selected: () => any;
|
|
478
|
+
disabled: () => string | null;
|
|
484
479
|
readonly: () => any;
|
|
480
|
+
role: () => string | null;
|
|
481
|
+
value: () => string | null;
|
|
482
|
+
label: () => string | null | undefined;
|
|
483
|
+
title: () => string | null | undefined;
|
|
484
|
+
children: (selector: string) => Element[];
|
|
485
485
|
parents: (selector: string) => ParentNode[];
|
|
486
486
|
} & {
|
|
487
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
488
487
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
489
488
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
490
489
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -522,6 +521,7 @@ declare const MenuLocator: {
|
|
|
522
521
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
523
522
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
524
523
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
524
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
525
525
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
526
526
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
527
527
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -574,25 +574,15 @@ declare const MenuLocator: {
|
|
|
574
574
|
toString: (maxLength?: number | undefined, options?: {
|
|
575
575
|
highlight: boolean;
|
|
576
576
|
} | undefined) => string;
|
|
577
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
578
|
-
children: (selector: string) => Element[];
|
|
579
|
-
title: () => string | null | undefined;
|
|
580
|
-
id: () => string;
|
|
581
|
-
tagName: () => string;
|
|
582
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
583
|
-
getBoundingClientRect: () => DOMRect;
|
|
584
|
-
matches: (selector: string | undefined) => boolean;
|
|
585
577
|
visible: () => boolean;
|
|
586
|
-
value: () => string | null;
|
|
587
|
-
disabled: () => string | null;
|
|
588
|
-
role: () => string | null;
|
|
589
|
-
label: () => string | null | undefined;
|
|
590
578
|
getId: () => string;
|
|
591
579
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
592
580
|
getOwnerDocument: () => Document;
|
|
593
581
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
594
582
|
getTagName: () => string;
|
|
583
|
+
tagName: () => string;
|
|
595
584
|
typeIn: (text: string) => Promise<void>;
|
|
585
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
596
586
|
getDOMNode: () => Element;
|
|
597
587
|
node: () => Element;
|
|
598
588
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -602,6 +592,7 @@ declare const MenuLocator: {
|
|
|
602
592
|
getTextContent: () => string | null;
|
|
603
593
|
getParentNode: () => ParentNode | null;
|
|
604
594
|
parent: () => ParentNode | null;
|
|
595
|
+
getBoundingClientRect: () => DOMRect;
|
|
605
596
|
rect: () => DOMRect;
|
|
606
597
|
hasClass: (classname: string) => boolean;
|
|
607
598
|
containsFocus: () => boolean;
|
|
@@ -613,17 +604,25 @@ declare const MenuLocator: {
|
|
|
613
604
|
exists: () => boolean;
|
|
614
605
|
text: () => string | null;
|
|
615
606
|
empty: () => boolean;
|
|
607
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
616
608
|
descendants: (selector: string) => Element[];
|
|
617
609
|
ancestors: (selector: string) => ParentNode[];
|
|
618
610
|
attribute: (qualifiedName: string) => string | null;
|
|
619
611
|
style: (property: string) => string;
|
|
620
612
|
classNames: () => string[];
|
|
613
|
+
id: () => string;
|
|
614
|
+
matches: (selector: string | undefined) => boolean;
|
|
621
615
|
checked: () => any;
|
|
622
616
|
selected: () => any;
|
|
617
|
+
disabled: () => string | null;
|
|
623
618
|
readonly: () => any;
|
|
619
|
+
role: () => string | null;
|
|
620
|
+
value: () => string | null;
|
|
621
|
+
label: () => string | null | undefined;
|
|
622
|
+
title: () => string | null | undefined;
|
|
623
|
+
children: (selector: string) => Element[];
|
|
624
624
|
parents: (selector: string) => ParentNode[];
|
|
625
625
|
} & {
|
|
626
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
627
626
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
628
627
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
629
628
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -661,6 +660,7 @@ declare const MenuLocator: {
|
|
|
661
660
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
662
661
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
663
662
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
663
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
664
664
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
665
665
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
666
666
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -714,25 +714,15 @@ declare const MenuLocator: {
|
|
|
714
714
|
toString: (maxLength?: number | undefined, options?: {
|
|
715
715
|
highlight: boolean;
|
|
716
716
|
} | undefined) => string;
|
|
717
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
718
|
-
children: (selector: string) => Element[];
|
|
719
|
-
title: () => string | null | undefined;
|
|
720
|
-
id: () => string;
|
|
721
|
-
tagName: () => string;
|
|
722
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
723
|
-
getBoundingClientRect: () => DOMRect;
|
|
724
|
-
matches: (selector: string | undefined) => boolean;
|
|
725
717
|
visible: () => boolean;
|
|
726
|
-
value: () => string | null;
|
|
727
|
-
disabled: () => string | null;
|
|
728
|
-
role: () => string | null;
|
|
729
|
-
label: () => string | null | undefined;
|
|
730
718
|
getId: () => string;
|
|
731
719
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
732
720
|
getOwnerDocument: () => Document;
|
|
733
721
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
734
722
|
getTagName: () => string;
|
|
723
|
+
tagName: () => string;
|
|
735
724
|
typeIn: (text: string) => Promise<void>;
|
|
725
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
736
726
|
getDOMNode: () => Element;
|
|
737
727
|
node: () => Element;
|
|
738
728
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -742,6 +732,7 @@ declare const MenuLocator: {
|
|
|
742
732
|
getTextContent: () => string | null;
|
|
743
733
|
getParentNode: () => ParentNode | null;
|
|
744
734
|
parent: () => ParentNode | null;
|
|
735
|
+
getBoundingClientRect: () => DOMRect;
|
|
745
736
|
rect: () => DOMRect;
|
|
746
737
|
hasClass: (classname: string) => boolean;
|
|
747
738
|
containsFocus: () => boolean;
|
|
@@ -753,17 +744,25 @@ declare const MenuLocator: {
|
|
|
753
744
|
exists: () => boolean;
|
|
754
745
|
text: () => string | null;
|
|
755
746
|
empty: () => boolean;
|
|
747
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
756
748
|
descendants: (selector: string) => Element[];
|
|
757
749
|
ancestors: (selector: string) => ParentNode[];
|
|
758
750
|
attribute: (qualifiedName: string) => string | null;
|
|
759
751
|
style: (property: string) => string;
|
|
760
752
|
classNames: () => string[];
|
|
753
|
+
id: () => string;
|
|
754
|
+
matches: (selector: string | undefined) => boolean;
|
|
761
755
|
checked: () => any;
|
|
762
756
|
selected: () => any;
|
|
757
|
+
disabled: () => string | null;
|
|
763
758
|
readonly: () => any;
|
|
759
|
+
role: () => string | null;
|
|
760
|
+
value: () => string | null;
|
|
761
|
+
label: () => string | null | undefined;
|
|
762
|
+
title: () => string | null | undefined;
|
|
763
|
+
children: (selector: string) => Element[];
|
|
764
764
|
parents: (selector: string) => ParentNode[];
|
|
765
765
|
} & {
|
|
766
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
767
766
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
768
767
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
769
768
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -801,6 +800,7 @@ declare const MenuLocator: {
|
|
|
801
800
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
802
801
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
803
802
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
803
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
804
804
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
805
805
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
806
806
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -853,25 +853,15 @@ declare const MenuLocator: {
|
|
|
853
853
|
toString: (maxLength?: number | undefined, options?: {
|
|
854
854
|
highlight: boolean;
|
|
855
855
|
} | undefined) => string;
|
|
856
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
857
|
-
children: (selector: string) => Element[];
|
|
858
|
-
title: () => string | null | undefined;
|
|
859
|
-
id: () => string;
|
|
860
|
-
tagName: () => string;
|
|
861
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
862
|
-
getBoundingClientRect: () => DOMRect;
|
|
863
|
-
matches: (selector: string | undefined) => boolean;
|
|
864
856
|
visible: () => boolean;
|
|
865
|
-
value: () => string | null;
|
|
866
|
-
disabled: () => string | null;
|
|
867
|
-
role: () => string | null;
|
|
868
|
-
label: () => string | null | undefined;
|
|
869
857
|
getId: () => string;
|
|
870
858
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
871
859
|
getOwnerDocument: () => Document;
|
|
872
860
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
873
861
|
getTagName: () => string;
|
|
862
|
+
tagName: () => string;
|
|
874
863
|
typeIn: (text: string) => Promise<void>;
|
|
864
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
875
865
|
getDOMNode: () => Element;
|
|
876
866
|
node: () => Element;
|
|
877
867
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -881,6 +871,7 @@ declare const MenuLocator: {
|
|
|
881
871
|
getTextContent: () => string | null;
|
|
882
872
|
getParentNode: () => ParentNode | null;
|
|
883
873
|
parent: () => ParentNode | null;
|
|
874
|
+
getBoundingClientRect: () => DOMRect;
|
|
884
875
|
rect: () => DOMRect;
|
|
885
876
|
hasClass: (classname: string) => boolean;
|
|
886
877
|
containsFocus: () => boolean;
|
|
@@ -892,17 +883,25 @@ declare const MenuLocator: {
|
|
|
892
883
|
exists: () => boolean;
|
|
893
884
|
text: () => string | null;
|
|
894
885
|
empty: () => boolean;
|
|
886
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
895
887
|
descendants: (selector: string) => Element[];
|
|
896
888
|
ancestors: (selector: string) => ParentNode[];
|
|
897
889
|
attribute: (qualifiedName: string) => string | null;
|
|
898
890
|
style: (property: string) => string;
|
|
899
891
|
classNames: () => string[];
|
|
892
|
+
id: () => string;
|
|
893
|
+
matches: (selector: string | undefined) => boolean;
|
|
900
894
|
checked: () => any;
|
|
901
895
|
selected: () => any;
|
|
896
|
+
disabled: () => string | null;
|
|
902
897
|
readonly: () => any;
|
|
898
|
+
role: () => string | null;
|
|
899
|
+
value: () => string | null;
|
|
900
|
+
label: () => string | null | undefined;
|
|
901
|
+
title: () => string | null | undefined;
|
|
902
|
+
children: (selector: string) => Element[];
|
|
903
903
|
parents: (selector: string) => ParentNode[];
|
|
904
904
|
} & {
|
|
905
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
906
905
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
907
906
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
908
907
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -940,6 +939,7 @@ declare const MenuLocator: {
|
|
|
940
939
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
941
940
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
942
941
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
942
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
943
943
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
944
944
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
945
945
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -992,25 +992,15 @@ declare const MenuLocator: {
|
|
|
992
992
|
toString: (maxLength?: number | undefined, options?: {
|
|
993
993
|
highlight: boolean;
|
|
994
994
|
} | undefined) => string;
|
|
995
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
996
|
-
children: (selector: string) => Element[];
|
|
997
|
-
title: () => string | null | undefined;
|
|
998
|
-
id: () => string;
|
|
999
|
-
tagName: () => string;
|
|
1000
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1001
|
-
getBoundingClientRect: () => DOMRect;
|
|
1002
|
-
matches: (selector: string | undefined) => boolean;
|
|
1003
995
|
visible: () => boolean;
|
|
1004
|
-
value: () => string | null;
|
|
1005
|
-
disabled: () => string | null;
|
|
1006
|
-
role: () => string | null;
|
|
1007
|
-
label: () => string | null | undefined;
|
|
1008
996
|
getId: () => string;
|
|
1009
997
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1010
998
|
getOwnerDocument: () => Document;
|
|
1011
999
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1012
1000
|
getTagName: () => string;
|
|
1001
|
+
tagName: () => string;
|
|
1013
1002
|
typeIn: (text: string) => Promise<void>;
|
|
1003
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1014
1004
|
getDOMNode: () => Element;
|
|
1015
1005
|
node: () => Element;
|
|
1016
1006
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1020,6 +1010,7 @@ declare const MenuLocator: {
|
|
|
1020
1010
|
getTextContent: () => string | null;
|
|
1021
1011
|
getParentNode: () => ParentNode | null;
|
|
1022
1012
|
parent: () => ParentNode | null;
|
|
1013
|
+
getBoundingClientRect: () => DOMRect;
|
|
1023
1014
|
rect: () => DOMRect;
|
|
1024
1015
|
hasClass: (classname: string) => boolean;
|
|
1025
1016
|
containsFocus: () => boolean;
|
|
@@ -1031,17 +1022,25 @@ declare const MenuLocator: {
|
|
|
1031
1022
|
exists: () => boolean;
|
|
1032
1023
|
text: () => string | null;
|
|
1033
1024
|
empty: () => boolean;
|
|
1025
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1034
1026
|
descendants: (selector: string) => Element[];
|
|
1035
1027
|
ancestors: (selector: string) => ParentNode[];
|
|
1036
1028
|
attribute: (qualifiedName: string) => string | null;
|
|
1037
1029
|
style: (property: string) => string;
|
|
1038
1030
|
classNames: () => string[];
|
|
1031
|
+
id: () => string;
|
|
1032
|
+
matches: (selector: string | undefined) => boolean;
|
|
1039
1033
|
checked: () => any;
|
|
1040
1034
|
selected: () => any;
|
|
1035
|
+
disabled: () => string | null;
|
|
1041
1036
|
readonly: () => any;
|
|
1037
|
+
role: () => string | null;
|
|
1038
|
+
value: () => string | null;
|
|
1039
|
+
label: () => string | null | undefined;
|
|
1040
|
+
title: () => string | null | undefined;
|
|
1041
|
+
children: (selector: string) => Element[];
|
|
1042
1042
|
parents: (selector: string) => ParentNode[];
|
|
1043
1043
|
} & {
|
|
1044
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1045
1044
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1046
1045
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1047
1046
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1079,6 +1078,7 @@ declare const MenuLocator: {
|
|
|
1079
1078
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1080
1079
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1081
1080
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1081
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1082
1082
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1083
1083
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1084
1084
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1141,25 +1141,15 @@ declare const MenuLocator: {
|
|
|
1141
1141
|
toString: (maxLength?: number | undefined, options?: {
|
|
1142
1142
|
highlight: boolean;
|
|
1143
1143
|
} | undefined) => string;
|
|
1144
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1145
|
-
children: (selector: string) => Element[];
|
|
1146
|
-
title: () => string | null | undefined;
|
|
1147
|
-
id: () => string;
|
|
1148
|
-
tagName: () => string;
|
|
1149
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1150
|
-
getBoundingClientRect: () => DOMRect;
|
|
1151
|
-
matches: (selector: string | undefined) => boolean;
|
|
1152
1144
|
visible: () => boolean;
|
|
1153
|
-
value: () => string | null;
|
|
1154
|
-
disabled: () => string | null;
|
|
1155
|
-
role: () => string | null;
|
|
1156
|
-
label: () => string | null | undefined;
|
|
1157
1145
|
getId: () => string;
|
|
1158
1146
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1159
1147
|
getOwnerDocument: () => Document;
|
|
1160
1148
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1161
1149
|
getTagName: () => string;
|
|
1150
|
+
tagName: () => string;
|
|
1162
1151
|
typeIn: (text: string) => Promise<void>;
|
|
1152
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1163
1153
|
getDOMNode: () => Element;
|
|
1164
1154
|
node: () => Element;
|
|
1165
1155
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1169,6 +1159,7 @@ declare const MenuLocator: {
|
|
|
1169
1159
|
getTextContent: () => string | null;
|
|
1170
1160
|
getParentNode: () => ParentNode | null;
|
|
1171
1161
|
parent: () => ParentNode | null;
|
|
1162
|
+
getBoundingClientRect: () => DOMRect;
|
|
1172
1163
|
rect: () => DOMRect;
|
|
1173
1164
|
hasClass: (classname: string) => boolean;
|
|
1174
1165
|
containsFocus: () => boolean;
|
|
@@ -1180,17 +1171,25 @@ declare const MenuLocator: {
|
|
|
1180
1171
|
exists: () => boolean;
|
|
1181
1172
|
text: () => string | null;
|
|
1182
1173
|
empty: () => boolean;
|
|
1174
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1183
1175
|
descendants: (selector: string) => Element[];
|
|
1184
1176
|
ancestors: (selector: string) => ParentNode[];
|
|
1185
1177
|
attribute: (qualifiedName: string) => string | null;
|
|
1186
1178
|
style: (property: string) => string;
|
|
1187
1179
|
classNames: () => string[];
|
|
1180
|
+
id: () => string;
|
|
1181
|
+
matches: (selector: string | undefined) => boolean;
|
|
1188
1182
|
checked: () => any;
|
|
1189
1183
|
selected: () => any;
|
|
1184
|
+
disabled: () => string | null;
|
|
1190
1185
|
readonly: () => any;
|
|
1186
|
+
role: () => string | null;
|
|
1187
|
+
value: () => string | null;
|
|
1188
|
+
label: () => string | null | undefined;
|
|
1189
|
+
title: () => string | null | undefined;
|
|
1190
|
+
children: (selector: string) => Element[];
|
|
1191
1191
|
parents: (selector: string) => ParentNode[];
|
|
1192
1192
|
} & {
|
|
1193
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1194
1193
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1195
1194
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1196
1195
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1228,6 +1227,7 @@ declare const MenuLocator: {
|
|
|
1228
1227
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1229
1228
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1230
1229
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1230
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1231
1231
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1232
1232
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1233
1233
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1280,25 +1280,15 @@ declare const MenuLocator: {
|
|
|
1280
1280
|
toString: (maxLength?: number | undefined, options?: {
|
|
1281
1281
|
highlight: boolean;
|
|
1282
1282
|
} | undefined) => string;
|
|
1283
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1284
|
-
children: (selector: string) => Element[];
|
|
1285
|
-
title: () => string | null | undefined;
|
|
1286
|
-
id: () => string;
|
|
1287
|
-
tagName: () => string;
|
|
1288
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1289
|
-
getBoundingClientRect: () => DOMRect;
|
|
1290
|
-
matches: (selector: string | undefined) => boolean;
|
|
1291
1283
|
visible: () => boolean;
|
|
1292
|
-
value: () => string | null;
|
|
1293
|
-
disabled: () => string | null;
|
|
1294
|
-
role: () => string | null;
|
|
1295
|
-
label: () => string | null | undefined;
|
|
1296
1284
|
getId: () => string;
|
|
1297
1285
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1298
1286
|
getOwnerDocument: () => Document;
|
|
1299
1287
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1300
1288
|
getTagName: () => string;
|
|
1289
|
+
tagName: () => string;
|
|
1301
1290
|
typeIn: (text: string) => Promise<void>;
|
|
1291
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1302
1292
|
getDOMNode: () => Element;
|
|
1303
1293
|
node: () => Element;
|
|
1304
1294
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1308,6 +1298,7 @@ declare const MenuLocator: {
|
|
|
1308
1298
|
getTextContent: () => string | null;
|
|
1309
1299
|
getParentNode: () => ParentNode | null;
|
|
1310
1300
|
parent: () => ParentNode | null;
|
|
1301
|
+
getBoundingClientRect: () => DOMRect;
|
|
1311
1302
|
rect: () => DOMRect;
|
|
1312
1303
|
hasClass: (classname: string) => boolean;
|
|
1313
1304
|
containsFocus: () => boolean;
|
|
@@ -1319,17 +1310,25 @@ declare const MenuLocator: {
|
|
|
1319
1310
|
exists: () => boolean;
|
|
1320
1311
|
text: () => string | null;
|
|
1321
1312
|
empty: () => boolean;
|
|
1313
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1322
1314
|
descendants: (selector: string) => Element[];
|
|
1323
1315
|
ancestors: (selector: string) => ParentNode[];
|
|
1324
1316
|
attribute: (qualifiedName: string) => string | null;
|
|
1325
1317
|
style: (property: string) => string;
|
|
1326
1318
|
classNames: () => string[];
|
|
1319
|
+
id: () => string;
|
|
1320
|
+
matches: (selector: string | undefined) => boolean;
|
|
1327
1321
|
checked: () => any;
|
|
1328
1322
|
selected: () => any;
|
|
1323
|
+
disabled: () => string | null;
|
|
1329
1324
|
readonly: () => any;
|
|
1325
|
+
role: () => string | null;
|
|
1326
|
+
value: () => string | null;
|
|
1327
|
+
label: () => string | null | undefined;
|
|
1328
|
+
title: () => string | null | undefined;
|
|
1329
|
+
children: (selector: string) => Element[];
|
|
1330
1330
|
parents: (selector: string) => ParentNode[];
|
|
1331
1331
|
} & {
|
|
1332
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1333
1332
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1334
1333
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1335
1334
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1367,6 +1366,7 @@ declare const MenuLocator: {
|
|
|
1367
1366
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1368
1367
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1369
1368
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1369
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1370
1370
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1371
1371
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1372
1372
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1419,25 +1419,15 @@ declare const MenuLocator: {
|
|
|
1419
1419
|
toString: (maxLength?: number | undefined, options?: {
|
|
1420
1420
|
highlight: boolean;
|
|
1421
1421
|
} | undefined) => string;
|
|
1422
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1423
|
-
children: (selector: string) => Element[];
|
|
1424
|
-
title: () => string | null | undefined;
|
|
1425
|
-
id: () => string;
|
|
1426
|
-
tagName: () => string;
|
|
1427
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1428
|
-
getBoundingClientRect: () => DOMRect;
|
|
1429
|
-
matches: (selector: string | undefined) => boolean;
|
|
1430
1422
|
visible: () => boolean;
|
|
1431
|
-
value: () => string | null;
|
|
1432
|
-
disabled: () => string | null;
|
|
1433
|
-
role: () => string | null;
|
|
1434
|
-
label: () => string | null | undefined;
|
|
1435
1423
|
getId: () => string;
|
|
1436
1424
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1437
1425
|
getOwnerDocument: () => Document;
|
|
1438
1426
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1439
1427
|
getTagName: () => string;
|
|
1428
|
+
tagName: () => string;
|
|
1440
1429
|
typeIn: (text: string) => Promise<void>;
|
|
1430
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1441
1431
|
getDOMNode: () => Element;
|
|
1442
1432
|
node: () => Element;
|
|
1443
1433
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1447,6 +1437,7 @@ declare const MenuLocator: {
|
|
|
1447
1437
|
getTextContent: () => string | null;
|
|
1448
1438
|
getParentNode: () => ParentNode | null;
|
|
1449
1439
|
parent: () => ParentNode | null;
|
|
1440
|
+
getBoundingClientRect: () => DOMRect;
|
|
1450
1441
|
rect: () => DOMRect;
|
|
1451
1442
|
hasClass: (classname: string) => boolean;
|
|
1452
1443
|
containsFocus: () => boolean;
|
|
@@ -1458,17 +1449,25 @@ declare const MenuLocator: {
|
|
|
1458
1449
|
exists: () => boolean;
|
|
1459
1450
|
text: () => string | null;
|
|
1460
1451
|
empty: () => boolean;
|
|
1452
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1461
1453
|
descendants: (selector: string) => Element[];
|
|
1462
1454
|
ancestors: (selector: string) => ParentNode[];
|
|
1463
1455
|
attribute: (qualifiedName: string) => string | null;
|
|
1464
1456
|
style: (property: string) => string;
|
|
1465
1457
|
classNames: () => string[];
|
|
1458
|
+
id: () => string;
|
|
1459
|
+
matches: (selector: string | undefined) => boolean;
|
|
1466
1460
|
checked: () => any;
|
|
1467
1461
|
selected: () => any;
|
|
1462
|
+
disabled: () => string | null;
|
|
1468
1463
|
readonly: () => any;
|
|
1464
|
+
role: () => string | null;
|
|
1465
|
+
value: () => string | null;
|
|
1466
|
+
label: () => string | null | undefined;
|
|
1467
|
+
title: () => string | null | undefined;
|
|
1468
|
+
children: (selector: string) => Element[];
|
|
1469
1469
|
parents: (selector: string) => ParentNode[];
|
|
1470
1470
|
} & {
|
|
1471
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1472
1471
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1473
1472
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1474
1473
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1506,6 +1505,7 @@ declare const MenuLocator: {
|
|
|
1506
1505
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1507
1506
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1508
1507
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1508
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1509
1509
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1510
1510
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1511
1511
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1558,25 +1558,15 @@ declare const MenuLocator: {
|
|
|
1558
1558
|
toString: (maxLength?: number | undefined, options?: {
|
|
1559
1559
|
highlight: boolean;
|
|
1560
1560
|
} | undefined) => string;
|
|
1561
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1562
|
-
children: (selector: string) => Element[];
|
|
1563
|
-
title: () => string | null | undefined;
|
|
1564
|
-
id: () => string;
|
|
1565
|
-
tagName: () => string;
|
|
1566
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1567
|
-
getBoundingClientRect: () => DOMRect;
|
|
1568
|
-
matches: (selector: string | undefined) => boolean;
|
|
1569
1561
|
visible: () => boolean;
|
|
1570
|
-
value: () => string | null;
|
|
1571
|
-
disabled: () => string | null;
|
|
1572
|
-
role: () => string | null;
|
|
1573
|
-
label: () => string | null | undefined;
|
|
1574
1562
|
getId: () => string;
|
|
1575
1563
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1576
1564
|
getOwnerDocument: () => Document;
|
|
1577
1565
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1578
1566
|
getTagName: () => string;
|
|
1567
|
+
tagName: () => string;
|
|
1579
1568
|
typeIn: (text: string) => Promise<void>;
|
|
1569
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1580
1570
|
getDOMNode: () => Element;
|
|
1581
1571
|
node: () => Element;
|
|
1582
1572
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1586,6 +1576,7 @@ declare const MenuLocator: {
|
|
|
1586
1576
|
getTextContent: () => string | null;
|
|
1587
1577
|
getParentNode: () => ParentNode | null;
|
|
1588
1578
|
parent: () => ParentNode | null;
|
|
1579
|
+
getBoundingClientRect: () => DOMRect;
|
|
1589
1580
|
rect: () => DOMRect;
|
|
1590
1581
|
hasClass: (classname: string) => boolean;
|
|
1591
1582
|
containsFocus: () => boolean;
|
|
@@ -1597,17 +1588,25 @@ declare const MenuLocator: {
|
|
|
1597
1588
|
exists: () => boolean;
|
|
1598
1589
|
text: () => string | null;
|
|
1599
1590
|
empty: () => boolean;
|
|
1591
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1600
1592
|
descendants: (selector: string) => Element[];
|
|
1601
1593
|
ancestors: (selector: string) => ParentNode[];
|
|
1602
1594
|
attribute: (qualifiedName: string) => string | null;
|
|
1603
1595
|
style: (property: string) => string;
|
|
1604
1596
|
classNames: () => string[];
|
|
1597
|
+
id: () => string;
|
|
1598
|
+
matches: (selector: string | undefined) => boolean;
|
|
1605
1599
|
checked: () => any;
|
|
1606
1600
|
selected: () => any;
|
|
1601
|
+
disabled: () => string | null;
|
|
1607
1602
|
readonly: () => any;
|
|
1603
|
+
role: () => string | null;
|
|
1604
|
+
value: () => string | null;
|
|
1605
|
+
label: () => string | null | undefined;
|
|
1606
|
+
title: () => string | null | undefined;
|
|
1607
|
+
children: (selector: string) => Element[];
|
|
1608
1608
|
parents: (selector: string) => ParentNode[];
|
|
1609
1609
|
} & {
|
|
1610
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1611
1610
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1612
1611
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1613
1612
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1645,6 +1644,7 @@ declare const MenuLocator: {
|
|
|
1645
1644
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1646
1645
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1647
1646
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1647
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1648
1648
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1649
1649
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1650
1650
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1697,25 +1697,15 @@ declare const MenuLocator: {
|
|
|
1697
1697
|
toString: (maxLength?: number | undefined, options?: {
|
|
1698
1698
|
highlight: boolean;
|
|
1699
1699
|
} | undefined) => string;
|
|
1700
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1701
|
-
children: (selector: string) => Element[];
|
|
1702
|
-
title: () => string | null | undefined;
|
|
1703
|
-
id: () => string;
|
|
1704
|
-
tagName: () => string;
|
|
1705
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1706
|
-
getBoundingClientRect: () => DOMRect;
|
|
1707
|
-
matches: (selector: string | undefined) => boolean;
|
|
1708
1700
|
visible: () => boolean;
|
|
1709
|
-
value: () => string | null;
|
|
1710
|
-
disabled: () => string | null;
|
|
1711
|
-
role: () => string | null;
|
|
1712
|
-
label: () => string | null | undefined;
|
|
1713
1701
|
getId: () => string;
|
|
1714
1702
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1715
1703
|
getOwnerDocument: () => Document;
|
|
1716
1704
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1717
1705
|
getTagName: () => string;
|
|
1706
|
+
tagName: () => string;
|
|
1718
1707
|
typeIn: (text: string) => Promise<void>;
|
|
1708
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1719
1709
|
getDOMNode: () => Element;
|
|
1720
1710
|
node: () => Element;
|
|
1721
1711
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1725,6 +1715,7 @@ declare const MenuLocator: {
|
|
|
1725
1715
|
getTextContent: () => string | null;
|
|
1726
1716
|
getParentNode: () => ParentNode | null;
|
|
1727
1717
|
parent: () => ParentNode | null;
|
|
1718
|
+
getBoundingClientRect: () => DOMRect;
|
|
1728
1719
|
rect: () => DOMRect;
|
|
1729
1720
|
hasClass: (classname: string) => boolean;
|
|
1730
1721
|
containsFocus: () => boolean;
|
|
@@ -1736,17 +1727,25 @@ declare const MenuLocator: {
|
|
|
1736
1727
|
exists: () => boolean;
|
|
1737
1728
|
text: () => string | null;
|
|
1738
1729
|
empty: () => boolean;
|
|
1730
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1739
1731
|
descendants: (selector: string) => Element[];
|
|
1740
1732
|
ancestors: (selector: string) => ParentNode[];
|
|
1741
1733
|
attribute: (qualifiedName: string) => string | null;
|
|
1742
1734
|
style: (property: string) => string;
|
|
1743
1735
|
classNames: () => string[];
|
|
1736
|
+
id: () => string;
|
|
1737
|
+
matches: (selector: string | undefined) => boolean;
|
|
1744
1738
|
checked: () => any;
|
|
1745
1739
|
selected: () => any;
|
|
1740
|
+
disabled: () => string | null;
|
|
1746
1741
|
readonly: () => any;
|
|
1742
|
+
role: () => string | null;
|
|
1743
|
+
value: () => string | null;
|
|
1744
|
+
label: () => string | null | undefined;
|
|
1745
|
+
title: () => string | null | undefined;
|
|
1746
|
+
children: (selector: string) => Element[];
|
|
1747
1747
|
parents: (selector: string) => ParentNode[];
|
|
1748
1748
|
} & {
|
|
1749
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1750
1749
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1751
1750
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1752
1751
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1784,6 +1783,7 @@ declare const MenuLocator: {
|
|
|
1784
1783
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1785
1784
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1786
1785
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1786
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1787
1787
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1788
1788
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1789
1789
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1836,25 +1836,15 @@ declare const MenuLocator: {
|
|
|
1836
1836
|
toString: (maxLength?: number | undefined, options?: {
|
|
1837
1837
|
highlight: boolean;
|
|
1838
1838
|
} | undefined) => string;
|
|
1839
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1840
|
-
children: (selector: string) => Element[];
|
|
1841
|
-
title: () => string | null | undefined;
|
|
1842
|
-
id: () => string;
|
|
1843
|
-
tagName: () => string;
|
|
1844
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1845
|
-
getBoundingClientRect: () => DOMRect;
|
|
1846
|
-
matches: (selector: string | undefined) => boolean;
|
|
1847
1839
|
visible: () => boolean;
|
|
1848
|
-
value: () => string | null;
|
|
1849
|
-
disabled: () => string | null;
|
|
1850
|
-
role: () => string | null;
|
|
1851
|
-
label: () => string | null | undefined;
|
|
1852
1840
|
getId: () => string;
|
|
1853
1841
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1854
1842
|
getOwnerDocument: () => Document;
|
|
1855
1843
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1856
1844
|
getTagName: () => string;
|
|
1845
|
+
tagName: () => string;
|
|
1857
1846
|
typeIn: (text: string) => Promise<void>;
|
|
1847
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1858
1848
|
getDOMNode: () => Element;
|
|
1859
1849
|
node: () => Element;
|
|
1860
1850
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1864,6 +1854,7 @@ declare const MenuLocator: {
|
|
|
1864
1854
|
getTextContent: () => string | null;
|
|
1865
1855
|
getParentNode: () => ParentNode | null;
|
|
1866
1856
|
parent: () => ParentNode | null;
|
|
1857
|
+
getBoundingClientRect: () => DOMRect;
|
|
1867
1858
|
rect: () => DOMRect;
|
|
1868
1859
|
hasClass: (classname: string) => boolean;
|
|
1869
1860
|
containsFocus: () => boolean;
|
|
@@ -1875,17 +1866,25 @@ declare const MenuLocator: {
|
|
|
1875
1866
|
exists: () => boolean;
|
|
1876
1867
|
text: () => string | null;
|
|
1877
1868
|
empty: () => boolean;
|
|
1869
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1878
1870
|
descendants: (selector: string) => Element[];
|
|
1879
1871
|
ancestors: (selector: string) => ParentNode[];
|
|
1880
1872
|
attribute: (qualifiedName: string) => string | null;
|
|
1881
1873
|
style: (property: string) => string;
|
|
1882
1874
|
classNames: () => string[];
|
|
1875
|
+
id: () => string;
|
|
1876
|
+
matches: (selector: string | undefined) => boolean;
|
|
1883
1877
|
checked: () => any;
|
|
1884
1878
|
selected: () => any;
|
|
1879
|
+
disabled: () => string | null;
|
|
1885
1880
|
readonly: () => any;
|
|
1881
|
+
role: () => string | null;
|
|
1882
|
+
value: () => string | null;
|
|
1883
|
+
label: () => string | null | undefined;
|
|
1884
|
+
title: () => string | null | undefined;
|
|
1885
|
+
children: (selector: string) => Element[];
|
|
1886
1886
|
parents: (selector: string) => ParentNode[];
|
|
1887
1887
|
} & {
|
|
1888
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1889
1888
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1890
1889
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1891
1890
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1923,6 +1922,7 @@ declare const MenuLocator: {
|
|
|
1923
1922
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1924
1923
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1925
1924
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1925
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1926
1926
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1927
1927
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1928
1928
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1976,25 +1976,15 @@ declare const MenuLocator: {
|
|
|
1976
1976
|
toString: (maxLength?: number | undefined, options?: {
|
|
1977
1977
|
highlight: boolean;
|
|
1978
1978
|
} | undefined) => string;
|
|
1979
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1980
|
-
children: (selector: string) => Element[];
|
|
1981
|
-
title: () => string | null | undefined;
|
|
1982
|
-
id: () => string;
|
|
1983
|
-
tagName: () => string;
|
|
1984
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1985
|
-
getBoundingClientRect: () => DOMRect;
|
|
1986
|
-
matches: (selector: string | undefined) => boolean;
|
|
1987
1979
|
visible: () => boolean;
|
|
1988
|
-
value: () => string | null;
|
|
1989
|
-
disabled: () => string | null;
|
|
1990
|
-
role: () => string | null;
|
|
1991
|
-
label: () => string | null | undefined;
|
|
1992
1980
|
getId: () => string;
|
|
1993
1981
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1994
1982
|
getOwnerDocument: () => Document;
|
|
1995
1983
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1996
1984
|
getTagName: () => string;
|
|
1985
|
+
tagName: () => string;
|
|
1997
1986
|
typeIn: (text: string) => Promise<void>;
|
|
1987
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1998
1988
|
getDOMNode: () => Element;
|
|
1999
1989
|
node: () => Element;
|
|
2000
1990
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2004,6 +1994,7 @@ declare const MenuLocator: {
|
|
|
2004
1994
|
getTextContent: () => string | null;
|
|
2005
1995
|
getParentNode: () => ParentNode | null;
|
|
2006
1996
|
parent: () => ParentNode | null;
|
|
1997
|
+
getBoundingClientRect: () => DOMRect;
|
|
2007
1998
|
rect: () => DOMRect;
|
|
2008
1999
|
hasClass: (classname: string) => boolean;
|
|
2009
2000
|
containsFocus: () => boolean;
|
|
@@ -2015,17 +2006,25 @@ declare const MenuLocator: {
|
|
|
2015
2006
|
exists: () => boolean;
|
|
2016
2007
|
text: () => string | null;
|
|
2017
2008
|
empty: () => boolean;
|
|
2009
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2018
2010
|
descendants: (selector: string) => Element[];
|
|
2019
2011
|
ancestors: (selector: string) => ParentNode[];
|
|
2020
2012
|
attribute: (qualifiedName: string) => string | null;
|
|
2021
2013
|
style: (property: string) => string;
|
|
2022
2014
|
classNames: () => string[];
|
|
2015
|
+
id: () => string;
|
|
2016
|
+
matches: (selector: string | undefined) => boolean;
|
|
2023
2017
|
checked: () => any;
|
|
2024
2018
|
selected: () => any;
|
|
2019
|
+
disabled: () => string | null;
|
|
2025
2020
|
readonly: () => any;
|
|
2021
|
+
role: () => string | null;
|
|
2022
|
+
value: () => string | null;
|
|
2023
|
+
label: () => string | null | undefined;
|
|
2024
|
+
title: () => string | null | undefined;
|
|
2025
|
+
children: (selector: string) => Element[];
|
|
2026
2026
|
parents: (selector: string) => ParentNode[];
|
|
2027
2027
|
} & {
|
|
2028
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2029
2028
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2030
2029
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2031
2030
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2063,6 +2062,7 @@ declare const MenuLocator: {
|
|
|
2063
2062
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2064
2063
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2065
2064
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2065
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2066
2066
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2067
2067
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2068
2068
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2115,25 +2115,15 @@ declare const MenuLocator: {
|
|
|
2115
2115
|
toString: (maxLength?: number | undefined, options?: {
|
|
2116
2116
|
highlight: boolean;
|
|
2117
2117
|
} | undefined) => string;
|
|
2118
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2119
|
-
children: (selector: string) => Element[];
|
|
2120
|
-
title: () => string | null | undefined;
|
|
2121
|
-
id: () => string;
|
|
2122
|
-
tagName: () => string;
|
|
2123
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2124
|
-
getBoundingClientRect: () => DOMRect;
|
|
2125
|
-
matches: (selector: string | undefined) => boolean;
|
|
2126
2118
|
visible: () => boolean;
|
|
2127
|
-
value: () => string | null;
|
|
2128
|
-
disabled: () => string | null;
|
|
2129
|
-
role: () => string | null;
|
|
2130
|
-
label: () => string | null | undefined;
|
|
2131
2119
|
getId: () => string;
|
|
2132
2120
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2133
2121
|
getOwnerDocument: () => Document;
|
|
2134
2122
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2135
2123
|
getTagName: () => string;
|
|
2124
|
+
tagName: () => string;
|
|
2136
2125
|
typeIn: (text: string) => Promise<void>;
|
|
2126
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2137
2127
|
getDOMNode: () => Element;
|
|
2138
2128
|
node: () => Element;
|
|
2139
2129
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2143,6 +2133,7 @@ declare const MenuLocator: {
|
|
|
2143
2133
|
getTextContent: () => string | null;
|
|
2144
2134
|
getParentNode: () => ParentNode | null;
|
|
2145
2135
|
parent: () => ParentNode | null;
|
|
2136
|
+
getBoundingClientRect: () => DOMRect;
|
|
2146
2137
|
rect: () => DOMRect;
|
|
2147
2138
|
hasClass: (classname: string) => boolean;
|
|
2148
2139
|
containsFocus: () => boolean;
|
|
@@ -2154,17 +2145,25 @@ declare const MenuLocator: {
|
|
|
2154
2145
|
exists: () => boolean;
|
|
2155
2146
|
text: () => string | null;
|
|
2156
2147
|
empty: () => boolean;
|
|
2148
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2157
2149
|
descendants: (selector: string) => Element[];
|
|
2158
2150
|
ancestors: (selector: string) => ParentNode[];
|
|
2159
2151
|
attribute: (qualifiedName: string) => string | null;
|
|
2160
2152
|
style: (property: string) => string;
|
|
2161
2153
|
classNames: () => string[];
|
|
2154
|
+
id: () => string;
|
|
2155
|
+
matches: (selector: string | undefined) => boolean;
|
|
2162
2156
|
checked: () => any;
|
|
2163
2157
|
selected: () => any;
|
|
2158
|
+
disabled: () => string | null;
|
|
2164
2159
|
readonly: () => any;
|
|
2160
|
+
role: () => string | null;
|
|
2161
|
+
value: () => string | null;
|
|
2162
|
+
label: () => string | null | undefined;
|
|
2163
|
+
title: () => string | null | undefined;
|
|
2164
|
+
children: (selector: string) => Element[];
|
|
2165
2165
|
parents: (selector: string) => ParentNode[];
|
|
2166
2166
|
} & {
|
|
2167
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2168
2167
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2169
2168
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2170
2169
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2202,6 +2201,7 @@ declare const MenuLocator: {
|
|
|
2202
2201
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2203
2202
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2204
2203
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2204
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2205
2205
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2206
2206
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2207
2207
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2254,25 +2254,15 @@ declare const MenuLocator: {
|
|
|
2254
2254
|
toString: (maxLength?: number | undefined, options?: {
|
|
2255
2255
|
highlight: boolean;
|
|
2256
2256
|
} | undefined) => string;
|
|
2257
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2258
|
-
children: (selector: string) => Element[];
|
|
2259
|
-
title: () => string | null | undefined;
|
|
2260
|
-
id: () => string;
|
|
2261
|
-
tagName: () => string;
|
|
2262
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2263
|
-
getBoundingClientRect: () => DOMRect;
|
|
2264
|
-
matches: (selector: string | undefined) => boolean;
|
|
2265
2257
|
visible: () => boolean;
|
|
2266
|
-
value: () => string | null;
|
|
2267
|
-
disabled: () => string | null;
|
|
2268
|
-
role: () => string | null;
|
|
2269
|
-
label: () => string | null | undefined;
|
|
2270
2258
|
getId: () => string;
|
|
2271
2259
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2272
2260
|
getOwnerDocument: () => Document;
|
|
2273
2261
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2274
2262
|
getTagName: () => string;
|
|
2263
|
+
tagName: () => string;
|
|
2275
2264
|
typeIn: (text: string) => Promise<void>;
|
|
2265
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2276
2266
|
getDOMNode: () => Element;
|
|
2277
2267
|
node: () => Element;
|
|
2278
2268
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2282,6 +2272,7 @@ declare const MenuLocator: {
|
|
|
2282
2272
|
getTextContent: () => string | null;
|
|
2283
2273
|
getParentNode: () => ParentNode | null;
|
|
2284
2274
|
parent: () => ParentNode | null;
|
|
2275
|
+
getBoundingClientRect: () => DOMRect;
|
|
2285
2276
|
rect: () => DOMRect;
|
|
2286
2277
|
hasClass: (classname: string) => boolean;
|
|
2287
2278
|
containsFocus: () => boolean;
|
|
@@ -2293,17 +2284,25 @@ declare const MenuLocator: {
|
|
|
2293
2284
|
exists: () => boolean;
|
|
2294
2285
|
text: () => string | null;
|
|
2295
2286
|
empty: () => boolean;
|
|
2287
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2296
2288
|
descendants: (selector: string) => Element[];
|
|
2297
2289
|
ancestors: (selector: string) => ParentNode[];
|
|
2298
2290
|
attribute: (qualifiedName: string) => string | null;
|
|
2299
2291
|
style: (property: string) => string;
|
|
2300
2292
|
classNames: () => string[];
|
|
2293
|
+
id: () => string;
|
|
2294
|
+
matches: (selector: string | undefined) => boolean;
|
|
2301
2295
|
checked: () => any;
|
|
2302
2296
|
selected: () => any;
|
|
2297
|
+
disabled: () => string | null;
|
|
2303
2298
|
readonly: () => any;
|
|
2299
|
+
role: () => string | null;
|
|
2300
|
+
value: () => string | null;
|
|
2301
|
+
label: () => string | null | undefined;
|
|
2302
|
+
title: () => string | null | undefined;
|
|
2303
|
+
children: (selector: string) => Element[];
|
|
2304
2304
|
parents: (selector: string) => ParentNode[];
|
|
2305
2305
|
} & {
|
|
2306
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2307
2306
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2308
2307
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2309
2308
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2341,6 +2340,7 @@ declare const MenuLocator: {
|
|
|
2341
2340
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2342
2341
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2343
2342
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2343
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2344
2344
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2345
2345
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2346
2346
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2397,25 +2397,15 @@ declare const MenuLocator: {
|
|
|
2397
2397
|
toString: (maxLength?: number | undefined, options?: {
|
|
2398
2398
|
highlight: boolean;
|
|
2399
2399
|
} | undefined) => string;
|
|
2400
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2401
|
-
children: (selector: string) => Element[];
|
|
2402
|
-
title: () => string | null | undefined;
|
|
2403
|
-
id: () => string;
|
|
2404
|
-
tagName: () => string;
|
|
2405
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2406
|
-
getBoundingClientRect: () => DOMRect;
|
|
2407
|
-
matches: (selector: string | undefined) => boolean;
|
|
2408
2400
|
visible: () => boolean;
|
|
2409
|
-
value: () => string | null;
|
|
2410
|
-
disabled: () => string | null;
|
|
2411
|
-
role: () => string | null;
|
|
2412
|
-
label: () => string | null | undefined;
|
|
2413
2401
|
getId: () => string;
|
|
2414
2402
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2415
2403
|
getOwnerDocument: () => Document;
|
|
2416
2404
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2417
2405
|
getTagName: () => string;
|
|
2406
|
+
tagName: () => string;
|
|
2418
2407
|
typeIn: (text: string) => Promise<void>;
|
|
2408
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2419
2409
|
getDOMNode: () => Element;
|
|
2420
2410
|
node: () => Element;
|
|
2421
2411
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2425,6 +2415,7 @@ declare const MenuLocator: {
|
|
|
2425
2415
|
getTextContent: () => string | null;
|
|
2426
2416
|
getParentNode: () => ParentNode | null;
|
|
2427
2417
|
parent: () => ParentNode | null;
|
|
2418
|
+
getBoundingClientRect: () => DOMRect;
|
|
2428
2419
|
rect: () => DOMRect;
|
|
2429
2420
|
hasClass: (classname: string) => boolean;
|
|
2430
2421
|
containsFocus: () => boolean;
|
|
@@ -2436,17 +2427,25 @@ declare const MenuLocator: {
|
|
|
2436
2427
|
exists: () => boolean;
|
|
2437
2428
|
text: () => string | null;
|
|
2438
2429
|
empty: () => boolean;
|
|
2430
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2439
2431
|
descendants: (selector: string) => Element[];
|
|
2440
2432
|
ancestors: (selector: string) => ParentNode[];
|
|
2441
2433
|
attribute: (qualifiedName: string) => string | null;
|
|
2442
2434
|
style: (property: string) => string;
|
|
2443
2435
|
classNames: () => string[];
|
|
2436
|
+
id: () => string;
|
|
2437
|
+
matches: (selector: string | undefined) => boolean;
|
|
2444
2438
|
checked: () => any;
|
|
2445
2439
|
selected: () => any;
|
|
2440
|
+
disabled: () => string | null;
|
|
2446
2441
|
readonly: () => any;
|
|
2442
|
+
role: () => string | null;
|
|
2443
|
+
value: () => string | null;
|
|
2444
|
+
label: () => string | null | undefined;
|
|
2445
|
+
title: () => string | null | undefined;
|
|
2446
|
+
children: (selector: string) => Element[];
|
|
2447
2447
|
parents: (selector: string) => ParentNode[];
|
|
2448
2448
|
} & {
|
|
2449
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2450
2449
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2451
2450
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2452
2451
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2484,6 +2483,7 @@ declare const MenuLocator: {
|
|
|
2484
2483
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2485
2484
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2486
2485
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2486
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2487
2487
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2488
2488
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2489
2489
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2536,25 +2536,15 @@ declare const MenuLocator: {
|
|
|
2536
2536
|
toString: (maxLength?: number | undefined, options?: {
|
|
2537
2537
|
highlight: boolean;
|
|
2538
2538
|
} | undefined) => string;
|
|
2539
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2540
|
-
children: (selector: string) => Element[];
|
|
2541
|
-
title: () => string | null | undefined;
|
|
2542
|
-
id: () => string;
|
|
2543
|
-
tagName: () => string;
|
|
2544
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2545
|
-
getBoundingClientRect: () => DOMRect;
|
|
2546
|
-
matches: (selector: string | undefined) => boolean;
|
|
2547
2539
|
visible: () => boolean;
|
|
2548
|
-
value: () => string | null;
|
|
2549
|
-
disabled: () => string | null;
|
|
2550
|
-
role: () => string | null;
|
|
2551
|
-
label: () => string | null | undefined;
|
|
2552
2540
|
getId: () => string;
|
|
2553
2541
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2554
2542
|
getOwnerDocument: () => Document;
|
|
2555
2543
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2556
2544
|
getTagName: () => string;
|
|
2545
|
+
tagName: () => string;
|
|
2557
2546
|
typeIn: (text: string) => Promise<void>;
|
|
2547
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2558
2548
|
getDOMNode: () => Element;
|
|
2559
2549
|
node: () => Element;
|
|
2560
2550
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2564,6 +2554,7 @@ declare const MenuLocator: {
|
|
|
2564
2554
|
getTextContent: () => string | null;
|
|
2565
2555
|
getParentNode: () => ParentNode | null;
|
|
2566
2556
|
parent: () => ParentNode | null;
|
|
2557
|
+
getBoundingClientRect: () => DOMRect;
|
|
2567
2558
|
rect: () => DOMRect;
|
|
2568
2559
|
hasClass: (classname: string) => boolean;
|
|
2569
2560
|
containsFocus: () => boolean;
|
|
@@ -2575,17 +2566,25 @@ declare const MenuLocator: {
|
|
|
2575
2566
|
exists: () => boolean;
|
|
2576
2567
|
text: () => string | null;
|
|
2577
2568
|
empty: () => boolean;
|
|
2569
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2578
2570
|
descendants: (selector: string) => Element[];
|
|
2579
2571
|
ancestors: (selector: string) => ParentNode[];
|
|
2580
2572
|
attribute: (qualifiedName: string) => string | null;
|
|
2581
2573
|
style: (property: string) => string;
|
|
2582
2574
|
classNames: () => string[];
|
|
2575
|
+
id: () => string;
|
|
2576
|
+
matches: (selector: string | undefined) => boolean;
|
|
2583
2577
|
checked: () => any;
|
|
2584
2578
|
selected: () => any;
|
|
2579
|
+
disabled: () => string | null;
|
|
2585
2580
|
readonly: () => any;
|
|
2581
|
+
role: () => string | null;
|
|
2582
|
+
value: () => string | null;
|
|
2583
|
+
label: () => string | null | undefined;
|
|
2584
|
+
title: () => string | null | undefined;
|
|
2585
|
+
children: (selector: string) => Element[];
|
|
2586
2586
|
parents: (selector: string) => ParentNode[];
|
|
2587
2587
|
} & {
|
|
2588
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2589
2588
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2590
2589
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2591
2590
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2623,6 +2622,7 @@ declare const MenuLocator: {
|
|
|
2623
2622
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2624
2623
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2625
2624
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2625
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2626
2626
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2627
2627
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2628
2628
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2675,25 +2675,15 @@ declare const MenuLocator: {
|
|
|
2675
2675
|
toString: (maxLength?: number | undefined, options?: {
|
|
2676
2676
|
highlight: boolean;
|
|
2677
2677
|
} | undefined) => string;
|
|
2678
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2679
|
-
children: (selector: string) => Element[];
|
|
2680
|
-
title: () => string | null | undefined;
|
|
2681
|
-
id: () => string;
|
|
2682
|
-
tagName: () => string;
|
|
2683
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2684
|
-
getBoundingClientRect: () => DOMRect;
|
|
2685
|
-
matches: (selector: string | undefined) => boolean;
|
|
2686
2678
|
visible: () => boolean;
|
|
2687
|
-
value: () => string | null;
|
|
2688
|
-
disabled: () => string | null;
|
|
2689
|
-
role: () => string | null;
|
|
2690
|
-
label: () => string | null | undefined;
|
|
2691
2679
|
getId: () => string;
|
|
2692
2680
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2693
2681
|
getOwnerDocument: () => Document;
|
|
2694
2682
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2695
2683
|
getTagName: () => string;
|
|
2684
|
+
tagName: () => string;
|
|
2696
2685
|
typeIn: (text: string) => Promise<void>;
|
|
2686
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2697
2687
|
getDOMNode: () => Element;
|
|
2698
2688
|
node: () => Element;
|
|
2699
2689
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2703,6 +2693,7 @@ declare const MenuLocator: {
|
|
|
2703
2693
|
getTextContent: () => string | null;
|
|
2704
2694
|
getParentNode: () => ParentNode | null;
|
|
2705
2695
|
parent: () => ParentNode | null;
|
|
2696
|
+
getBoundingClientRect: () => DOMRect;
|
|
2706
2697
|
rect: () => DOMRect;
|
|
2707
2698
|
hasClass: (classname: string) => boolean;
|
|
2708
2699
|
containsFocus: () => boolean;
|
|
@@ -2714,17 +2705,25 @@ declare const MenuLocator: {
|
|
|
2714
2705
|
exists: () => boolean;
|
|
2715
2706
|
text: () => string | null;
|
|
2716
2707
|
empty: () => boolean;
|
|
2708
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2717
2709
|
descendants: (selector: string) => Element[];
|
|
2718
2710
|
ancestors: (selector: string) => ParentNode[];
|
|
2719
2711
|
attribute: (qualifiedName: string) => string | null;
|
|
2720
2712
|
style: (property: string) => string;
|
|
2721
2713
|
classNames: () => string[];
|
|
2714
|
+
id: () => string;
|
|
2715
|
+
matches: (selector: string | undefined) => boolean;
|
|
2722
2716
|
checked: () => any;
|
|
2723
2717
|
selected: () => any;
|
|
2718
|
+
disabled: () => string | null;
|
|
2724
2719
|
readonly: () => any;
|
|
2720
|
+
role: () => string | null;
|
|
2721
|
+
value: () => string | null;
|
|
2722
|
+
label: () => string | null | undefined;
|
|
2723
|
+
title: () => string | null | undefined;
|
|
2724
|
+
children: (selector: string) => Element[];
|
|
2725
2725
|
parents: (selector: string) => ParentNode[];
|
|
2726
2726
|
} & {
|
|
2727
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2728
2727
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2729
2728
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2730
2729
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2762,6 +2761,7 @@ declare const MenuLocator: {
|
|
|
2762
2761
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2763
2762
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2764
2763
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2764
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2765
2765
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2766
2766
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2767
2767
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2814,25 +2814,15 @@ declare const MenuLocator: {
|
|
|
2814
2814
|
toString: (maxLength?: number | undefined, options?: {
|
|
2815
2815
|
highlight: boolean;
|
|
2816
2816
|
} | undefined) => string;
|
|
2817
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2818
|
-
children: (selector: string) => Element[];
|
|
2819
|
-
title: () => string | null | undefined;
|
|
2820
|
-
id: () => string;
|
|
2821
|
-
tagName: () => string;
|
|
2822
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2823
|
-
getBoundingClientRect: () => DOMRect;
|
|
2824
|
-
matches: (selector: string | undefined) => boolean;
|
|
2825
2817
|
visible: () => boolean;
|
|
2826
|
-
value: () => string | null;
|
|
2827
|
-
disabled: () => string | null;
|
|
2828
|
-
role: () => string | null;
|
|
2829
|
-
label: () => string | null | undefined;
|
|
2830
2818
|
getId: () => string;
|
|
2831
2819
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2832
2820
|
getOwnerDocument: () => Document;
|
|
2833
2821
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2834
2822
|
getTagName: () => string;
|
|
2823
|
+
tagName: () => string;
|
|
2835
2824
|
typeIn: (text: string) => Promise<void>;
|
|
2825
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2836
2826
|
getDOMNode: () => Element;
|
|
2837
2827
|
node: () => Element;
|
|
2838
2828
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2842,6 +2832,7 @@ declare const MenuLocator: {
|
|
|
2842
2832
|
getTextContent: () => string | null;
|
|
2843
2833
|
getParentNode: () => ParentNode | null;
|
|
2844
2834
|
parent: () => ParentNode | null;
|
|
2835
|
+
getBoundingClientRect: () => DOMRect;
|
|
2845
2836
|
rect: () => DOMRect;
|
|
2846
2837
|
hasClass: (classname: string) => boolean;
|
|
2847
2838
|
containsFocus: () => boolean;
|
|
@@ -2853,17 +2844,25 @@ declare const MenuLocator: {
|
|
|
2853
2844
|
exists: () => boolean;
|
|
2854
2845
|
text: () => string | null;
|
|
2855
2846
|
empty: () => boolean;
|
|
2847
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2856
2848
|
descendants: (selector: string) => Element[];
|
|
2857
2849
|
ancestors: (selector: string) => ParentNode[];
|
|
2858
2850
|
attribute: (qualifiedName: string) => string | null;
|
|
2859
2851
|
style: (property: string) => string;
|
|
2860
2852
|
classNames: () => string[];
|
|
2853
|
+
id: () => string;
|
|
2854
|
+
matches: (selector: string | undefined) => boolean;
|
|
2861
2855
|
checked: () => any;
|
|
2862
2856
|
selected: () => any;
|
|
2857
|
+
disabled: () => string | null;
|
|
2863
2858
|
readonly: () => any;
|
|
2859
|
+
role: () => string | null;
|
|
2860
|
+
value: () => string | null;
|
|
2861
|
+
label: () => string | null | undefined;
|
|
2862
|
+
title: () => string | null | undefined;
|
|
2863
|
+
children: (selector: string) => Element[];
|
|
2864
2864
|
parents: (selector: string) => ParentNode[];
|
|
2865
2865
|
} & {
|
|
2866
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2867
2866
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2868
2867
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2869
2868
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2901,6 +2900,7 @@ declare const MenuLocator: {
|
|
|
2901
2900
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2902
2901
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2903
2902
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2903
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2904
2904
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2905
2905
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2906
2906
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2953,25 +2953,15 @@ declare const MenuLocator: {
|
|
|
2953
2953
|
toString: (maxLength?: number | undefined, options?: {
|
|
2954
2954
|
highlight: boolean;
|
|
2955
2955
|
} | undefined) => string;
|
|
2956
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2957
|
-
children: (selector: string) => Element[];
|
|
2958
|
-
title: () => string | null | undefined;
|
|
2959
|
-
id: () => string;
|
|
2960
|
-
tagName: () => string;
|
|
2961
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2962
|
-
getBoundingClientRect: () => DOMRect;
|
|
2963
|
-
matches: (selector: string | undefined) => boolean;
|
|
2964
2956
|
visible: () => boolean;
|
|
2965
|
-
value: () => string | null;
|
|
2966
|
-
disabled: () => string | null;
|
|
2967
|
-
role: () => string | null;
|
|
2968
|
-
label: () => string | null | undefined;
|
|
2969
2957
|
getId: () => string;
|
|
2970
2958
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2971
2959
|
getOwnerDocument: () => Document;
|
|
2972
2960
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2973
2961
|
getTagName: () => string;
|
|
2962
|
+
tagName: () => string;
|
|
2974
2963
|
typeIn: (text: string) => Promise<void>;
|
|
2964
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2975
2965
|
getDOMNode: () => Element;
|
|
2976
2966
|
node: () => Element;
|
|
2977
2967
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2981,6 +2971,7 @@ declare const MenuLocator: {
|
|
|
2981
2971
|
getTextContent: () => string | null;
|
|
2982
2972
|
getParentNode: () => ParentNode | null;
|
|
2983
2973
|
parent: () => ParentNode | null;
|
|
2974
|
+
getBoundingClientRect: () => DOMRect;
|
|
2984
2975
|
rect: () => DOMRect;
|
|
2985
2976
|
hasClass: (classname: string) => boolean;
|
|
2986
2977
|
containsFocus: () => boolean;
|
|
@@ -2992,17 +2983,25 @@ declare const MenuLocator: {
|
|
|
2992
2983
|
exists: () => boolean;
|
|
2993
2984
|
text: () => string | null;
|
|
2994
2985
|
empty: () => boolean;
|
|
2986
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2995
2987
|
descendants: (selector: string) => Element[];
|
|
2996
2988
|
ancestors: (selector: string) => ParentNode[];
|
|
2997
2989
|
attribute: (qualifiedName: string) => string | null;
|
|
2998
2990
|
style: (property: string) => string;
|
|
2999
2991
|
classNames: () => string[];
|
|
2992
|
+
id: () => string;
|
|
2993
|
+
matches: (selector: string | undefined) => boolean;
|
|
3000
2994
|
checked: () => any;
|
|
3001
2995
|
selected: () => any;
|
|
2996
|
+
disabled: () => string | null;
|
|
3002
2997
|
readonly: () => any;
|
|
2998
|
+
role: () => string | null;
|
|
2999
|
+
value: () => string | null;
|
|
3000
|
+
label: () => string | null | undefined;
|
|
3001
|
+
title: () => string | null | undefined;
|
|
3002
|
+
children: (selector: string) => Element[];
|
|
3003
3003
|
parents: (selector: string) => ParentNode[];
|
|
3004
3004
|
} & {
|
|
3005
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3006
3005
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3007
3006
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3008
3007
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3040,6 +3039,7 @@ declare const MenuLocator: {
|
|
|
3040
3039
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3041
3040
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3042
3041
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3042
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3043
3043
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3044
3044
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3045
3045
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3092,25 +3092,15 @@ declare const MenuLocator: {
|
|
|
3092
3092
|
toString: (maxLength?: number | undefined, options?: {
|
|
3093
3093
|
highlight: boolean;
|
|
3094
3094
|
} | undefined) => string;
|
|
3095
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3096
|
-
children: (selector: string) => Element[];
|
|
3097
|
-
title: () => string | null | undefined;
|
|
3098
|
-
id: () => string;
|
|
3099
|
-
tagName: () => string;
|
|
3100
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3101
|
-
getBoundingClientRect: () => DOMRect;
|
|
3102
|
-
matches: (selector: string | undefined) => boolean;
|
|
3103
3095
|
visible: () => boolean;
|
|
3104
|
-
value: () => string | null;
|
|
3105
|
-
disabled: () => string | null;
|
|
3106
|
-
role: () => string | null;
|
|
3107
|
-
label: () => string | null | undefined;
|
|
3108
3096
|
getId: () => string;
|
|
3109
3097
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3110
3098
|
getOwnerDocument: () => Document;
|
|
3111
3099
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3112
3100
|
getTagName: () => string;
|
|
3101
|
+
tagName: () => string;
|
|
3113
3102
|
typeIn: (text: string) => Promise<void>;
|
|
3103
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3114
3104
|
getDOMNode: () => Element;
|
|
3115
3105
|
node: () => Element;
|
|
3116
3106
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3120,6 +3110,7 @@ declare const MenuLocator: {
|
|
|
3120
3110
|
getTextContent: () => string | null;
|
|
3121
3111
|
getParentNode: () => ParentNode | null;
|
|
3122
3112
|
parent: () => ParentNode | null;
|
|
3113
|
+
getBoundingClientRect: () => DOMRect;
|
|
3123
3114
|
rect: () => DOMRect;
|
|
3124
3115
|
hasClass: (classname: string) => boolean;
|
|
3125
3116
|
containsFocus: () => boolean;
|
|
@@ -3131,17 +3122,25 @@ declare const MenuLocator: {
|
|
|
3131
3122
|
exists: () => boolean;
|
|
3132
3123
|
text: () => string | null;
|
|
3133
3124
|
empty: () => boolean;
|
|
3125
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3134
3126
|
descendants: (selector: string) => Element[];
|
|
3135
3127
|
ancestors: (selector: string) => ParentNode[];
|
|
3136
3128
|
attribute: (qualifiedName: string) => string | null;
|
|
3137
3129
|
style: (property: string) => string;
|
|
3138
3130
|
classNames: () => string[];
|
|
3131
|
+
id: () => string;
|
|
3132
|
+
matches: (selector: string | undefined) => boolean;
|
|
3139
3133
|
checked: () => any;
|
|
3140
3134
|
selected: () => any;
|
|
3135
|
+
disabled: () => string | null;
|
|
3141
3136
|
readonly: () => any;
|
|
3137
|
+
role: () => string | null;
|
|
3138
|
+
value: () => string | null;
|
|
3139
|
+
label: () => string | null | undefined;
|
|
3140
|
+
title: () => string | null | undefined;
|
|
3141
|
+
children: (selector: string) => Element[];
|
|
3142
3142
|
parents: (selector: string) => ParentNode[];
|
|
3143
3143
|
} & {
|
|
3144
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3145
3144
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3146
3145
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3147
3146
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3179,6 +3178,7 @@ declare const MenuLocator: {
|
|
|
3179
3178
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3180
3179
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3181
3180
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3181
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3182
3182
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3183
3183
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3184
3184
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3232,25 +3232,15 @@ declare const MenuLocator: {
|
|
|
3232
3232
|
toString: (maxLength?: number | undefined, options?: {
|
|
3233
3233
|
highlight: boolean;
|
|
3234
3234
|
} | undefined) => string;
|
|
3235
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3236
|
-
children: (selector: string) => Element[];
|
|
3237
|
-
title: () => string | null | undefined;
|
|
3238
|
-
id: () => string;
|
|
3239
|
-
tagName: () => string;
|
|
3240
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3241
|
-
getBoundingClientRect: () => DOMRect;
|
|
3242
|
-
matches: (selector: string | undefined) => boolean;
|
|
3243
3235
|
visible: () => boolean;
|
|
3244
|
-
value: () => string | null;
|
|
3245
|
-
disabled: () => string | null;
|
|
3246
|
-
role: () => string | null;
|
|
3247
|
-
label: () => string | null | undefined;
|
|
3248
3236
|
getId: () => string;
|
|
3249
3237
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3250
3238
|
getOwnerDocument: () => Document;
|
|
3251
3239
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3252
3240
|
getTagName: () => string;
|
|
3241
|
+
tagName: () => string;
|
|
3253
3242
|
typeIn: (text: string) => Promise<void>;
|
|
3243
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3254
3244
|
getDOMNode: () => Element;
|
|
3255
3245
|
node: () => Element;
|
|
3256
3246
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3260,6 +3250,7 @@ declare const MenuLocator: {
|
|
|
3260
3250
|
getTextContent: () => string | null;
|
|
3261
3251
|
getParentNode: () => ParentNode | null;
|
|
3262
3252
|
parent: () => ParentNode | null;
|
|
3253
|
+
getBoundingClientRect: () => DOMRect;
|
|
3263
3254
|
rect: () => DOMRect;
|
|
3264
3255
|
hasClass: (classname: string) => boolean;
|
|
3265
3256
|
containsFocus: () => boolean;
|
|
@@ -3271,17 +3262,25 @@ declare const MenuLocator: {
|
|
|
3271
3262
|
exists: () => boolean;
|
|
3272
3263
|
text: () => string | null;
|
|
3273
3264
|
empty: () => boolean;
|
|
3265
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3274
3266
|
descendants: (selector: string) => Element[];
|
|
3275
3267
|
ancestors: (selector: string) => ParentNode[];
|
|
3276
3268
|
attribute: (qualifiedName: string) => string | null;
|
|
3277
3269
|
style: (property: string) => string;
|
|
3278
3270
|
classNames: () => string[];
|
|
3271
|
+
id: () => string;
|
|
3272
|
+
matches: (selector: string | undefined) => boolean;
|
|
3279
3273
|
checked: () => any;
|
|
3280
3274
|
selected: () => any;
|
|
3275
|
+
disabled: () => string | null;
|
|
3281
3276
|
readonly: () => any;
|
|
3277
|
+
role: () => string | null;
|
|
3278
|
+
value: () => string | null;
|
|
3279
|
+
label: () => string | null | undefined;
|
|
3280
|
+
title: () => string | null | undefined;
|
|
3281
|
+
children: (selector: string) => Element[];
|
|
3282
3282
|
parents: (selector: string) => ParentNode[];
|
|
3283
3283
|
} & {
|
|
3284
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3285
3284
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3286
3285
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3287
3286
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3319,6 +3318,7 @@ declare const MenuLocator: {
|
|
|
3319
3318
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3320
3319
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3321
3320
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3321
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3322
3322
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3323
3323
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3324
3324
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3371,25 +3371,15 @@ declare const MenuLocator: {
|
|
|
3371
3371
|
toString: (maxLength?: number | undefined, options?: {
|
|
3372
3372
|
highlight: boolean;
|
|
3373
3373
|
} | undefined) => string;
|
|
3374
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3375
|
-
children: (selector: string) => Element[];
|
|
3376
|
-
title: () => string | null | undefined;
|
|
3377
|
-
id: () => string;
|
|
3378
|
-
tagName: () => string;
|
|
3379
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3380
|
-
getBoundingClientRect: () => DOMRect;
|
|
3381
|
-
matches: (selector: string | undefined) => boolean;
|
|
3382
3374
|
visible: () => boolean;
|
|
3383
|
-
value: () => string | null;
|
|
3384
|
-
disabled: () => string | null;
|
|
3385
|
-
role: () => string | null;
|
|
3386
|
-
label: () => string | null | undefined;
|
|
3387
3375
|
getId: () => string;
|
|
3388
3376
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3389
3377
|
getOwnerDocument: () => Document;
|
|
3390
3378
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3391
3379
|
getTagName: () => string;
|
|
3380
|
+
tagName: () => string;
|
|
3392
3381
|
typeIn: (text: string) => Promise<void>;
|
|
3382
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3393
3383
|
getDOMNode: () => Element;
|
|
3394
3384
|
node: () => Element;
|
|
3395
3385
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3399,6 +3389,7 @@ declare const MenuLocator: {
|
|
|
3399
3389
|
getTextContent: () => string | null;
|
|
3400
3390
|
getParentNode: () => ParentNode | null;
|
|
3401
3391
|
parent: () => ParentNode | null;
|
|
3392
|
+
getBoundingClientRect: () => DOMRect;
|
|
3402
3393
|
rect: () => DOMRect;
|
|
3403
3394
|
hasClass: (classname: string) => boolean;
|
|
3404
3395
|
containsFocus: () => boolean;
|
|
@@ -3410,17 +3401,25 @@ declare const MenuLocator: {
|
|
|
3410
3401
|
exists: () => boolean;
|
|
3411
3402
|
text: () => string | null;
|
|
3412
3403
|
empty: () => boolean;
|
|
3404
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3413
3405
|
descendants: (selector: string) => Element[];
|
|
3414
3406
|
ancestors: (selector: string) => ParentNode[];
|
|
3415
3407
|
attribute: (qualifiedName: string) => string | null;
|
|
3416
3408
|
style: (property: string) => string;
|
|
3417
3409
|
classNames: () => string[];
|
|
3410
|
+
id: () => string;
|
|
3411
|
+
matches: (selector: string | undefined) => boolean;
|
|
3418
3412
|
checked: () => any;
|
|
3419
3413
|
selected: () => any;
|
|
3414
|
+
disabled: () => string | null;
|
|
3420
3415
|
readonly: () => any;
|
|
3416
|
+
role: () => string | null;
|
|
3417
|
+
value: () => string | null;
|
|
3418
|
+
label: () => string | null | undefined;
|
|
3419
|
+
title: () => string | null | undefined;
|
|
3420
|
+
children: (selector: string) => Element[];
|
|
3421
3421
|
parents: (selector: string) => ParentNode[];
|
|
3422
3422
|
} & {
|
|
3423
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3424
3423
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3425
3424
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3426
3425
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3458,6 +3457,7 @@ declare const MenuLocator: {
|
|
|
3458
3457
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3459
3458
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3460
3459
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3460
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3461
3461
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3462
3462
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3463
3463
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3510,25 +3510,15 @@ declare const MenuLocator: {
|
|
|
3510
3510
|
toString: (maxLength?: number | undefined, options?: {
|
|
3511
3511
|
highlight: boolean;
|
|
3512
3512
|
} | undefined) => string;
|
|
3513
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3514
|
-
children: (selector: string) => Element[];
|
|
3515
|
-
title: () => string | null | undefined;
|
|
3516
|
-
id: () => string;
|
|
3517
|
-
tagName: () => string;
|
|
3518
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3519
|
-
getBoundingClientRect: () => DOMRect;
|
|
3520
|
-
matches: (selector: string | undefined) => boolean;
|
|
3521
3513
|
visible: () => boolean;
|
|
3522
|
-
value: () => string | null;
|
|
3523
|
-
disabled: () => string | null;
|
|
3524
|
-
role: () => string | null;
|
|
3525
|
-
label: () => string | null | undefined;
|
|
3526
3514
|
getId: () => string;
|
|
3527
3515
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3528
3516
|
getOwnerDocument: () => Document;
|
|
3529
3517
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3530
3518
|
getTagName: () => string;
|
|
3519
|
+
tagName: () => string;
|
|
3531
3520
|
typeIn: (text: string) => Promise<void>;
|
|
3521
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3532
3522
|
getDOMNode: () => Element;
|
|
3533
3523
|
node: () => Element;
|
|
3534
3524
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3538,6 +3528,7 @@ declare const MenuLocator: {
|
|
|
3538
3528
|
getTextContent: () => string | null;
|
|
3539
3529
|
getParentNode: () => ParentNode | null;
|
|
3540
3530
|
parent: () => ParentNode | null;
|
|
3531
|
+
getBoundingClientRect: () => DOMRect;
|
|
3541
3532
|
rect: () => DOMRect;
|
|
3542
3533
|
hasClass: (classname: string) => boolean;
|
|
3543
3534
|
containsFocus: () => boolean;
|
|
@@ -3549,17 +3540,25 @@ declare const MenuLocator: {
|
|
|
3549
3540
|
exists: () => boolean;
|
|
3550
3541
|
text: () => string | null;
|
|
3551
3542
|
empty: () => boolean;
|
|
3543
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3552
3544
|
descendants: (selector: string) => Element[];
|
|
3553
3545
|
ancestors: (selector: string) => ParentNode[];
|
|
3554
3546
|
attribute: (qualifiedName: string) => string | null;
|
|
3555
3547
|
style: (property: string) => string;
|
|
3556
3548
|
classNames: () => string[];
|
|
3549
|
+
id: () => string;
|
|
3550
|
+
matches: (selector: string | undefined) => boolean;
|
|
3557
3551
|
checked: () => any;
|
|
3558
3552
|
selected: () => any;
|
|
3553
|
+
disabled: () => string | null;
|
|
3559
3554
|
readonly: () => any;
|
|
3555
|
+
role: () => string | null;
|
|
3556
|
+
value: () => string | null;
|
|
3557
|
+
label: () => string | null | undefined;
|
|
3558
|
+
title: () => string | null | undefined;
|
|
3559
|
+
children: (selector: string) => Element[];
|
|
3560
3560
|
parents: (selector: string) => ParentNode[];
|
|
3561
3561
|
} & {
|
|
3562
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3563
3562
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3564
3563
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3565
3564
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3597,6 +3596,7 @@ declare const MenuLocator: {
|
|
|
3597
3596
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3598
3597
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3599
3598
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3599
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3600
3600
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3601
3601
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3602
3602
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3653,25 +3653,15 @@ declare const MenuLocator: {
|
|
|
3653
3653
|
toString: (maxLength?: number | undefined, options?: {
|
|
3654
3654
|
highlight: boolean;
|
|
3655
3655
|
} | undefined) => string;
|
|
3656
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3657
|
-
children: (selector: string) => Element[];
|
|
3658
|
-
title: () => string | null | undefined;
|
|
3659
|
-
id: () => string;
|
|
3660
|
-
tagName: () => string;
|
|
3661
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3662
|
-
getBoundingClientRect: () => DOMRect;
|
|
3663
|
-
matches: (selector: string | undefined) => boolean;
|
|
3664
3656
|
visible: () => boolean;
|
|
3665
|
-
value: () => string | null;
|
|
3666
|
-
disabled: () => string | null;
|
|
3667
|
-
role: () => string | null;
|
|
3668
|
-
label: () => string | null | undefined;
|
|
3669
3657
|
getId: () => string;
|
|
3670
3658
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3671
3659
|
getOwnerDocument: () => Document;
|
|
3672
3660
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3673
3661
|
getTagName: () => string;
|
|
3662
|
+
tagName: () => string;
|
|
3674
3663
|
typeIn: (text: string) => Promise<void>;
|
|
3664
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3675
3665
|
getDOMNode: () => Element;
|
|
3676
3666
|
node: () => Element;
|
|
3677
3667
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3681,6 +3671,7 @@ declare const MenuLocator: {
|
|
|
3681
3671
|
getTextContent: () => string | null;
|
|
3682
3672
|
getParentNode: () => ParentNode | null;
|
|
3683
3673
|
parent: () => ParentNode | null;
|
|
3674
|
+
getBoundingClientRect: () => DOMRect;
|
|
3684
3675
|
rect: () => DOMRect;
|
|
3685
3676
|
hasClass: (classname: string) => boolean;
|
|
3686
3677
|
containsFocus: () => boolean;
|
|
@@ -3692,17 +3683,25 @@ declare const MenuLocator: {
|
|
|
3692
3683
|
exists: () => boolean;
|
|
3693
3684
|
text: () => string | null;
|
|
3694
3685
|
empty: () => boolean;
|
|
3686
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3695
3687
|
descendants: (selector: string) => Element[];
|
|
3696
3688
|
ancestors: (selector: string) => ParentNode[];
|
|
3697
3689
|
attribute: (qualifiedName: string) => string | null;
|
|
3698
3690
|
style: (property: string) => string;
|
|
3699
3691
|
classNames: () => string[];
|
|
3692
|
+
id: () => string;
|
|
3693
|
+
matches: (selector: string | undefined) => boolean;
|
|
3700
3694
|
checked: () => any;
|
|
3701
3695
|
selected: () => any;
|
|
3696
|
+
disabled: () => string | null;
|
|
3702
3697
|
readonly: () => any;
|
|
3698
|
+
role: () => string | null;
|
|
3699
|
+
value: () => string | null;
|
|
3700
|
+
label: () => string | null | undefined;
|
|
3701
|
+
title: () => string | null | undefined;
|
|
3702
|
+
children: (selector: string) => Element[];
|
|
3703
3703
|
parents: (selector: string) => ParentNode[];
|
|
3704
3704
|
} & {
|
|
3705
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3706
3705
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3707
3706
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3708
3707
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3740,6 +3739,7 @@ declare const MenuLocator: {
|
|
|
3740
3739
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3741
3740
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3742
3741
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3742
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3743
3743
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3744
3744
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3745
3745
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3792,25 +3792,15 @@ declare const MenuLocator: {
|
|
|
3792
3792
|
toString: (maxLength?: number | undefined, options?: {
|
|
3793
3793
|
highlight: boolean;
|
|
3794
3794
|
} | undefined) => string;
|
|
3795
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3796
|
-
children: (selector: string) => Element[];
|
|
3797
|
-
title: () => string | null | undefined;
|
|
3798
|
-
id: () => string;
|
|
3799
|
-
tagName: () => string;
|
|
3800
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3801
|
-
getBoundingClientRect: () => DOMRect;
|
|
3802
|
-
matches: (selector: string | undefined) => boolean;
|
|
3803
3795
|
visible: () => boolean;
|
|
3804
|
-
value: () => string | null;
|
|
3805
|
-
disabled: () => string | null;
|
|
3806
|
-
role: () => string | null;
|
|
3807
|
-
label: () => string | null | undefined;
|
|
3808
3796
|
getId: () => string;
|
|
3809
3797
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3810
3798
|
getOwnerDocument: () => Document;
|
|
3811
3799
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3812
3800
|
getTagName: () => string;
|
|
3801
|
+
tagName: () => string;
|
|
3813
3802
|
typeIn: (text: string) => Promise<void>;
|
|
3803
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3814
3804
|
getDOMNode: () => Element;
|
|
3815
3805
|
node: () => Element;
|
|
3816
3806
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3820,6 +3810,7 @@ declare const MenuLocator: {
|
|
|
3820
3810
|
getTextContent: () => string | null;
|
|
3821
3811
|
getParentNode: () => ParentNode | null;
|
|
3822
3812
|
parent: () => ParentNode | null;
|
|
3813
|
+
getBoundingClientRect: () => DOMRect;
|
|
3823
3814
|
rect: () => DOMRect;
|
|
3824
3815
|
hasClass: (classname: string) => boolean;
|
|
3825
3816
|
containsFocus: () => boolean;
|
|
@@ -3831,17 +3822,25 @@ declare const MenuLocator: {
|
|
|
3831
3822
|
exists: () => boolean;
|
|
3832
3823
|
text: () => string | null;
|
|
3833
3824
|
empty: () => boolean;
|
|
3825
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3834
3826
|
descendants: (selector: string) => Element[];
|
|
3835
3827
|
ancestors: (selector: string) => ParentNode[];
|
|
3836
3828
|
attribute: (qualifiedName: string) => string | null;
|
|
3837
3829
|
style: (property: string) => string;
|
|
3838
3830
|
classNames: () => string[];
|
|
3831
|
+
id: () => string;
|
|
3832
|
+
matches: (selector: string | undefined) => boolean;
|
|
3839
3833
|
checked: () => any;
|
|
3840
3834
|
selected: () => any;
|
|
3835
|
+
disabled: () => string | null;
|
|
3841
3836
|
readonly: () => any;
|
|
3837
|
+
role: () => string | null;
|
|
3838
|
+
value: () => string | null;
|
|
3839
|
+
label: () => string | null | undefined;
|
|
3840
|
+
title: () => string | null | undefined;
|
|
3841
|
+
children: (selector: string) => Element[];
|
|
3842
3842
|
parents: (selector: string) => ParentNode[];
|
|
3843
3843
|
} & {
|
|
3844
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3845
3844
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3846
3845
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3847
3846
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3879,6 +3878,7 @@ declare const MenuLocator: {
|
|
|
3879
3878
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3880
3879
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3881
3880
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3881
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3882
3882
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3883
3883
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3884
3884
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -3931,25 +3931,15 @@ declare const MenuLocator: {
|
|
|
3931
3931
|
toString: (maxLength?: number | undefined, options?: {
|
|
3932
3932
|
highlight: boolean;
|
|
3933
3933
|
} | undefined) => string;
|
|
3934
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3935
|
-
children: (selector: string) => Element[];
|
|
3936
|
-
title: () => string | null | undefined;
|
|
3937
|
-
id: () => string;
|
|
3938
|
-
tagName: () => string;
|
|
3939
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
3940
|
-
getBoundingClientRect: () => DOMRect;
|
|
3941
|
-
matches: (selector: string | undefined) => boolean;
|
|
3942
3934
|
visible: () => boolean;
|
|
3943
|
-
value: () => string | null;
|
|
3944
|
-
disabled: () => string | null;
|
|
3945
|
-
role: () => string | null;
|
|
3946
|
-
label: () => string | null | undefined;
|
|
3947
3935
|
getId: () => string;
|
|
3948
3936
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3949
3937
|
getOwnerDocument: () => Document;
|
|
3950
3938
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
3951
3939
|
getTagName: () => string;
|
|
3940
|
+
tagName: () => string;
|
|
3952
3941
|
typeIn: (text: string) => Promise<void>;
|
|
3942
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
3953
3943
|
getDOMNode: () => Element;
|
|
3954
3944
|
node: () => Element;
|
|
3955
3945
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -3959,6 +3949,7 @@ declare const MenuLocator: {
|
|
|
3959
3949
|
getTextContent: () => string | null;
|
|
3960
3950
|
getParentNode: () => ParentNode | null;
|
|
3961
3951
|
parent: () => ParentNode | null;
|
|
3952
|
+
getBoundingClientRect: () => DOMRect;
|
|
3962
3953
|
rect: () => DOMRect;
|
|
3963
3954
|
hasClass: (classname: string) => boolean;
|
|
3964
3955
|
containsFocus: () => boolean;
|
|
@@ -3970,17 +3961,25 @@ declare const MenuLocator: {
|
|
|
3970
3961
|
exists: () => boolean;
|
|
3971
3962
|
text: () => string | null;
|
|
3972
3963
|
empty: () => boolean;
|
|
3964
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3973
3965
|
descendants: (selector: string) => Element[];
|
|
3974
3966
|
ancestors: (selector: string) => ParentNode[];
|
|
3975
3967
|
attribute: (qualifiedName: string) => string | null;
|
|
3976
3968
|
style: (property: string) => string;
|
|
3977
3969
|
classNames: () => string[];
|
|
3970
|
+
id: () => string;
|
|
3971
|
+
matches: (selector: string | undefined) => boolean;
|
|
3978
3972
|
checked: () => any;
|
|
3979
3973
|
selected: () => any;
|
|
3974
|
+
disabled: () => string | null;
|
|
3980
3975
|
readonly: () => any;
|
|
3976
|
+
role: () => string | null;
|
|
3977
|
+
value: () => string | null;
|
|
3978
|
+
label: () => string | null | undefined;
|
|
3979
|
+
title: () => string | null | undefined;
|
|
3980
|
+
children: (selector: string) => Element[];
|
|
3981
3981
|
parents: (selector: string) => ParentNode[];
|
|
3982
3982
|
} & {
|
|
3983
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3984
3983
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3985
3984
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3986
3985
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4018,6 +4017,7 @@ declare const MenuLocator: {
|
|
|
4018
4017
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4019
4018
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4020
4019
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4020
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4021
4021
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4022
4022
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4023
4023
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4070,25 +4070,15 @@ declare const MenuLocator: {
|
|
|
4070
4070
|
toString: (maxLength?: number | undefined, options?: {
|
|
4071
4071
|
highlight: boolean;
|
|
4072
4072
|
} | undefined) => string;
|
|
4073
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4074
|
-
children: (selector: string) => Element[];
|
|
4075
|
-
title: () => string | null | undefined;
|
|
4076
|
-
id: () => string;
|
|
4077
|
-
tagName: () => string;
|
|
4078
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
4079
|
-
getBoundingClientRect: () => DOMRect;
|
|
4080
|
-
matches: (selector: string | undefined) => boolean;
|
|
4081
4073
|
visible: () => boolean;
|
|
4082
|
-
value: () => string | null;
|
|
4083
|
-
disabled: () => string | null;
|
|
4084
|
-
role: () => string | null;
|
|
4085
|
-
label: () => string | null | undefined;
|
|
4086
4074
|
getId: () => string;
|
|
4087
4075
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
4088
4076
|
getOwnerDocument: () => Document;
|
|
4089
4077
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
4090
4078
|
getTagName: () => string;
|
|
4079
|
+
tagName: () => string;
|
|
4091
4080
|
typeIn: (text: string) => Promise<void>;
|
|
4081
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
4092
4082
|
getDOMNode: () => Element;
|
|
4093
4083
|
node: () => Element;
|
|
4094
4084
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -4098,6 +4088,7 @@ declare const MenuLocator: {
|
|
|
4098
4088
|
getTextContent: () => string | null;
|
|
4099
4089
|
getParentNode: () => ParentNode | null;
|
|
4100
4090
|
parent: () => ParentNode | null;
|
|
4091
|
+
getBoundingClientRect: () => DOMRect;
|
|
4101
4092
|
rect: () => DOMRect;
|
|
4102
4093
|
hasClass: (classname: string) => boolean;
|
|
4103
4094
|
containsFocus: () => boolean;
|
|
@@ -4109,17 +4100,25 @@ declare const MenuLocator: {
|
|
|
4109
4100
|
exists: () => boolean;
|
|
4110
4101
|
text: () => string | null;
|
|
4111
4102
|
empty: () => boolean;
|
|
4103
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4112
4104
|
descendants: (selector: string) => Element[];
|
|
4113
4105
|
ancestors: (selector: string) => ParentNode[];
|
|
4114
4106
|
attribute: (qualifiedName: string) => string | null;
|
|
4115
4107
|
style: (property: string) => string;
|
|
4116
4108
|
classNames: () => string[];
|
|
4109
|
+
id: () => string;
|
|
4110
|
+
matches: (selector: string | undefined) => boolean;
|
|
4117
4111
|
checked: () => any;
|
|
4118
4112
|
selected: () => any;
|
|
4113
|
+
disabled: () => string | null;
|
|
4119
4114
|
readonly: () => any;
|
|
4115
|
+
role: () => string | null;
|
|
4116
|
+
value: () => string | null;
|
|
4117
|
+
label: () => string | null | undefined;
|
|
4118
|
+
title: () => string | null | undefined;
|
|
4119
|
+
children: (selector: string) => Element[];
|
|
4120
4120
|
parents: (selector: string) => ParentNode[];
|
|
4121
4121
|
} & {
|
|
4122
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4123
4122
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4124
4123
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4125
4124
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4157,6 +4156,7 @@ declare const MenuLocator: {
|
|
|
4157
4156
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4158
4157
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4159
4158
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4159
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4160
4160
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4161
4161
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4162
4162
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4209,25 +4209,15 @@ declare const MenuLocator: {
|
|
|
4209
4209
|
toString: (maxLength?: number | undefined, options?: {
|
|
4210
4210
|
highlight: boolean;
|
|
4211
4211
|
} | undefined) => string;
|
|
4212
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4213
|
-
children: (selector: string) => Element[];
|
|
4214
|
-
title: () => string | null | undefined;
|
|
4215
|
-
id: () => string;
|
|
4216
|
-
tagName: () => string;
|
|
4217
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
4218
|
-
getBoundingClientRect: () => DOMRect;
|
|
4219
|
-
matches: (selector: string | undefined) => boolean;
|
|
4220
4212
|
visible: () => boolean;
|
|
4221
|
-
value: () => string | null;
|
|
4222
|
-
disabled: () => string | null;
|
|
4223
|
-
role: () => string | null;
|
|
4224
|
-
label: () => string | null | undefined;
|
|
4225
4213
|
getId: () => string;
|
|
4226
4214
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
4227
4215
|
getOwnerDocument: () => Document;
|
|
4228
4216
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
4229
4217
|
getTagName: () => string;
|
|
4218
|
+
tagName: () => string;
|
|
4230
4219
|
typeIn: (text: string) => Promise<void>;
|
|
4220
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
4231
4221
|
getDOMNode: () => Element;
|
|
4232
4222
|
node: () => Element;
|
|
4233
4223
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -4237,6 +4227,7 @@ declare const MenuLocator: {
|
|
|
4237
4227
|
getTextContent: () => string | null;
|
|
4238
4228
|
getParentNode: () => ParentNode | null;
|
|
4239
4229
|
parent: () => ParentNode | null;
|
|
4230
|
+
getBoundingClientRect: () => DOMRect;
|
|
4240
4231
|
rect: () => DOMRect;
|
|
4241
4232
|
hasClass: (classname: string) => boolean;
|
|
4242
4233
|
containsFocus: () => boolean;
|
|
@@ -4248,17 +4239,25 @@ declare const MenuLocator: {
|
|
|
4248
4239
|
exists: () => boolean;
|
|
4249
4240
|
text: () => string | null;
|
|
4250
4241
|
empty: () => boolean;
|
|
4242
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4251
4243
|
descendants: (selector: string) => Element[];
|
|
4252
4244
|
ancestors: (selector: string) => ParentNode[];
|
|
4253
4245
|
attribute: (qualifiedName: string) => string | null;
|
|
4254
4246
|
style: (property: string) => string;
|
|
4255
4247
|
classNames: () => string[];
|
|
4248
|
+
id: () => string;
|
|
4249
|
+
matches: (selector: string | undefined) => boolean;
|
|
4256
4250
|
checked: () => any;
|
|
4257
4251
|
selected: () => any;
|
|
4252
|
+
disabled: () => string | null;
|
|
4258
4253
|
readonly: () => any;
|
|
4254
|
+
role: () => string | null;
|
|
4255
|
+
value: () => string | null;
|
|
4256
|
+
label: () => string | null | undefined;
|
|
4257
|
+
title: () => string | null | undefined;
|
|
4258
|
+
children: (selector: string) => Element[];
|
|
4259
4259
|
parents: (selector: string) => ParentNode[];
|
|
4260
4260
|
} & {
|
|
4261
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4262
4261
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4263
4262
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4264
4263
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4296,6 +4295,7 @@ declare const MenuLocator: {
|
|
|
4296
4295
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4297
4296
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4298
4297
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4298
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4299
4299
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4300
4300
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4301
4301
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4348,25 +4348,15 @@ declare const MenuLocator: {
|
|
|
4348
4348
|
toString: (maxLength?: number | undefined, options?: {
|
|
4349
4349
|
highlight: boolean;
|
|
4350
4350
|
} | undefined) => string;
|
|
4351
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4352
|
-
children: (selector: string) => Element[];
|
|
4353
|
-
title: () => string | null | undefined;
|
|
4354
|
-
id: () => string;
|
|
4355
|
-
tagName: () => string;
|
|
4356
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
4357
|
-
getBoundingClientRect: () => DOMRect;
|
|
4358
|
-
matches: (selector: string | undefined) => boolean;
|
|
4359
4351
|
visible: () => boolean;
|
|
4360
|
-
value: () => string | null;
|
|
4361
|
-
disabled: () => string | null;
|
|
4362
|
-
role: () => string | null;
|
|
4363
|
-
label: () => string | null | undefined;
|
|
4364
4352
|
getId: () => string;
|
|
4365
4353
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
4366
4354
|
getOwnerDocument: () => Document;
|
|
4367
4355
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
4368
4356
|
getTagName: () => string;
|
|
4357
|
+
tagName: () => string;
|
|
4369
4358
|
typeIn: (text: string) => Promise<void>;
|
|
4359
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
4370
4360
|
getDOMNode: () => Element;
|
|
4371
4361
|
node: () => Element;
|
|
4372
4362
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -4376,6 +4366,7 @@ declare const MenuLocator: {
|
|
|
4376
4366
|
getTextContent: () => string | null;
|
|
4377
4367
|
getParentNode: () => ParentNode | null;
|
|
4378
4368
|
parent: () => ParentNode | null;
|
|
4369
|
+
getBoundingClientRect: () => DOMRect;
|
|
4379
4370
|
rect: () => DOMRect;
|
|
4380
4371
|
hasClass: (classname: string) => boolean;
|
|
4381
4372
|
containsFocus: () => boolean;
|
|
@@ -4387,17 +4378,25 @@ declare const MenuLocator: {
|
|
|
4387
4378
|
exists: () => boolean;
|
|
4388
4379
|
text: () => string | null;
|
|
4389
4380
|
empty: () => boolean;
|
|
4381
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4390
4382
|
descendants: (selector: string) => Element[];
|
|
4391
4383
|
ancestors: (selector: string) => ParentNode[];
|
|
4392
4384
|
attribute: (qualifiedName: string) => string | null;
|
|
4393
4385
|
style: (property: string) => string;
|
|
4394
4386
|
classNames: () => string[];
|
|
4387
|
+
id: () => string;
|
|
4388
|
+
matches: (selector: string | undefined) => boolean;
|
|
4395
4389
|
checked: () => any;
|
|
4396
4390
|
selected: () => any;
|
|
4391
|
+
disabled: () => string | null;
|
|
4397
4392
|
readonly: () => any;
|
|
4393
|
+
role: () => string | null;
|
|
4394
|
+
value: () => string | null;
|
|
4395
|
+
label: () => string | null | undefined;
|
|
4396
|
+
title: () => string | null | undefined;
|
|
4397
|
+
children: (selector: string) => Element[];
|
|
4398
4398
|
parents: (selector: string) => ParentNode[];
|
|
4399
4399
|
} & {
|
|
4400
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4401
4400
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4402
4401
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4403
4402
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4435,6 +4434,7 @@ declare const MenuLocator: {
|
|
|
4435
4434
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4436
4435
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4437
4436
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4437
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4438
4438
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4439
4439
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4440
4440
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4488,25 +4488,15 @@ declare const MenuLocator: {
|
|
|
4488
4488
|
toString: (maxLength?: number | undefined, options?: {
|
|
4489
4489
|
highlight: boolean;
|
|
4490
4490
|
} | undefined) => string;
|
|
4491
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4492
|
-
children: (selector: string) => Element[];
|
|
4493
|
-
title: () => string | null | undefined;
|
|
4494
|
-
id: () => string;
|
|
4495
|
-
tagName: () => string;
|
|
4496
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
4497
|
-
getBoundingClientRect: () => DOMRect;
|
|
4498
|
-
matches: (selector: string | undefined) => boolean;
|
|
4499
4491
|
visible: () => boolean;
|
|
4500
|
-
value: () => string | null;
|
|
4501
|
-
disabled: () => string | null;
|
|
4502
|
-
role: () => string | null;
|
|
4503
|
-
label: () => string | null | undefined;
|
|
4504
4492
|
getId: () => string;
|
|
4505
4493
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
4506
4494
|
getOwnerDocument: () => Document;
|
|
4507
4495
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
4508
4496
|
getTagName: () => string;
|
|
4497
|
+
tagName: () => string;
|
|
4509
4498
|
typeIn: (text: string) => Promise<void>;
|
|
4499
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
4510
4500
|
getDOMNode: () => Element;
|
|
4511
4501
|
node: () => Element;
|
|
4512
4502
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -4516,6 +4506,7 @@ declare const MenuLocator: {
|
|
|
4516
4506
|
getTextContent: () => string | null;
|
|
4517
4507
|
getParentNode: () => ParentNode | null;
|
|
4518
4508
|
parent: () => ParentNode | null;
|
|
4509
|
+
getBoundingClientRect: () => DOMRect;
|
|
4519
4510
|
rect: () => DOMRect;
|
|
4520
4511
|
hasClass: (classname: string) => boolean;
|
|
4521
4512
|
containsFocus: () => boolean;
|
|
@@ -4527,17 +4518,25 @@ declare const MenuLocator: {
|
|
|
4527
4518
|
exists: () => boolean;
|
|
4528
4519
|
text: () => string | null;
|
|
4529
4520
|
empty: () => boolean;
|
|
4521
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4530
4522
|
descendants: (selector: string) => Element[];
|
|
4531
4523
|
ancestors: (selector: string) => ParentNode[];
|
|
4532
4524
|
attribute: (qualifiedName: string) => string | null;
|
|
4533
4525
|
style: (property: string) => string;
|
|
4534
4526
|
classNames: () => string[];
|
|
4527
|
+
id: () => string;
|
|
4528
|
+
matches: (selector: string | undefined) => boolean;
|
|
4535
4529
|
checked: () => any;
|
|
4536
4530
|
selected: () => any;
|
|
4531
|
+
disabled: () => string | null;
|
|
4537
4532
|
readonly: () => any;
|
|
4533
|
+
role: () => string | null;
|
|
4534
|
+
value: () => string | null;
|
|
4535
|
+
label: () => string | null | undefined;
|
|
4536
|
+
title: () => string | null | undefined;
|
|
4537
|
+
children: (selector: string) => Element[];
|
|
4538
4538
|
parents: (selector: string) => ParentNode[];
|
|
4539
4539
|
} & {
|
|
4540
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4541
4540
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4542
4541
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4543
4542
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4575,6 +4574,7 @@ declare const MenuLocator: {
|
|
|
4575
4574
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4576
4575
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4577
4576
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4577
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4578
4578
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4579
4579
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4580
4580
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4627,25 +4627,15 @@ declare const MenuLocator: {
|
|
|
4627
4627
|
toString: (maxLength?: number | undefined, options?: {
|
|
4628
4628
|
highlight: boolean;
|
|
4629
4629
|
} | undefined) => string;
|
|
4630
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4631
|
-
children: (selector: string) => Element[];
|
|
4632
|
-
title: () => string | null | undefined;
|
|
4633
|
-
id: () => string;
|
|
4634
|
-
tagName: () => string;
|
|
4635
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
4636
|
-
getBoundingClientRect: () => DOMRect;
|
|
4637
|
-
matches: (selector: string | undefined) => boolean;
|
|
4638
4630
|
visible: () => boolean;
|
|
4639
|
-
value: () => string | null;
|
|
4640
|
-
disabled: () => string | null;
|
|
4641
|
-
role: () => string | null;
|
|
4642
|
-
label: () => string | null | undefined;
|
|
4643
4631
|
getId: () => string;
|
|
4644
4632
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
4645
4633
|
getOwnerDocument: () => Document;
|
|
4646
4634
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
4647
4635
|
getTagName: () => string;
|
|
4636
|
+
tagName: () => string;
|
|
4648
4637
|
typeIn: (text: string) => Promise<void>;
|
|
4638
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
4649
4639
|
getDOMNode: () => Element;
|
|
4650
4640
|
node: () => Element;
|
|
4651
4641
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -4655,6 +4645,7 @@ declare const MenuLocator: {
|
|
|
4655
4645
|
getTextContent: () => string | null;
|
|
4656
4646
|
getParentNode: () => ParentNode | null;
|
|
4657
4647
|
parent: () => ParentNode | null;
|
|
4648
|
+
getBoundingClientRect: () => DOMRect;
|
|
4658
4649
|
rect: () => DOMRect;
|
|
4659
4650
|
hasClass: (classname: string) => boolean;
|
|
4660
4651
|
containsFocus: () => boolean;
|
|
@@ -4666,17 +4657,25 @@ declare const MenuLocator: {
|
|
|
4666
4657
|
exists: () => boolean;
|
|
4667
4658
|
text: () => string | null;
|
|
4668
4659
|
empty: () => boolean;
|
|
4660
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4669
4661
|
descendants: (selector: string) => Element[];
|
|
4670
4662
|
ancestors: (selector: string) => ParentNode[];
|
|
4671
4663
|
attribute: (qualifiedName: string) => string | null;
|
|
4672
4664
|
style: (property: string) => string;
|
|
4673
4665
|
classNames: () => string[];
|
|
4666
|
+
id: () => string;
|
|
4667
|
+
matches: (selector: string | undefined) => boolean;
|
|
4674
4668
|
checked: () => any;
|
|
4675
4669
|
selected: () => any;
|
|
4670
|
+
disabled: () => string | null;
|
|
4676
4671
|
readonly: () => any;
|
|
4672
|
+
role: () => string | null;
|
|
4673
|
+
value: () => string | null;
|
|
4674
|
+
label: () => string | null | undefined;
|
|
4675
|
+
title: () => string | null | undefined;
|
|
4676
|
+
children: (selector: string) => Element[];
|
|
4677
4677
|
parents: (selector: string) => ParentNode[];
|
|
4678
4678
|
} & {
|
|
4679
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4680
4679
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4681
4680
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4682
4681
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4714,6 +4713,7 @@ declare const MenuLocator: {
|
|
|
4714
4713
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4715
4714
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4716
4715
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4716
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4717
4717
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4718
4718
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4719
4719
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4762,29 +4762,19 @@ declare const MenuLocator: {
|
|
|
4762
4762
|
findFrame: typeof import("@instructure/ui-test-queries/src/utils/queries").findFrame;
|
|
4763
4763
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
4764
4764
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
4765
|
-
} & {
|
|
4766
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
4767
|
-
highlight: boolean;
|
|
4768
|
-
} | undefined) => string;
|
|
4769
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4770
|
-
children: (selector: string) => Element[];
|
|
4771
|
-
title: () => string | null | undefined;
|
|
4772
|
-
id: () => string;
|
|
4773
|
-
tagName: () => string;
|
|
4774
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
4775
|
-
getBoundingClientRect: () => DOMRect;
|
|
4776
|
-
matches: (selector: string | undefined) => boolean;
|
|
4765
|
+
} & {
|
|
4766
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
4767
|
+
highlight: boolean;
|
|
4768
|
+
} | undefined) => string;
|
|
4777
4769
|
visible: () => boolean;
|
|
4778
|
-
value: () => string | null;
|
|
4779
|
-
disabled: () => string | null;
|
|
4780
|
-
role: () => string | null;
|
|
4781
|
-
label: () => string | null | undefined;
|
|
4782
4770
|
getId: () => string;
|
|
4783
4771
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
4784
4772
|
getOwnerDocument: () => Document;
|
|
4785
4773
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
4786
4774
|
getTagName: () => string;
|
|
4775
|
+
tagName: () => string;
|
|
4787
4776
|
typeIn: (text: string) => Promise<void>;
|
|
4777
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
4788
4778
|
getDOMNode: () => Element;
|
|
4789
4779
|
node: () => Element;
|
|
4790
4780
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -4794,6 +4784,7 @@ declare const MenuLocator: {
|
|
|
4794
4784
|
getTextContent: () => string | null;
|
|
4795
4785
|
getParentNode: () => ParentNode | null;
|
|
4796
4786
|
parent: () => ParentNode | null;
|
|
4787
|
+
getBoundingClientRect: () => DOMRect;
|
|
4797
4788
|
rect: () => DOMRect;
|
|
4798
4789
|
hasClass: (classname: string) => boolean;
|
|
4799
4790
|
containsFocus: () => boolean;
|
|
@@ -4805,17 +4796,25 @@ declare const MenuLocator: {
|
|
|
4805
4796
|
exists: () => boolean;
|
|
4806
4797
|
text: () => string | null;
|
|
4807
4798
|
empty: () => boolean;
|
|
4799
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4808
4800
|
descendants: (selector: string) => Element[];
|
|
4809
4801
|
ancestors: (selector: string) => ParentNode[];
|
|
4810
4802
|
attribute: (qualifiedName: string) => string | null;
|
|
4811
4803
|
style: (property: string) => string;
|
|
4812
4804
|
classNames: () => string[];
|
|
4805
|
+
id: () => string;
|
|
4806
|
+
matches: (selector: string | undefined) => boolean;
|
|
4813
4807
|
checked: () => any;
|
|
4814
4808
|
selected: () => any;
|
|
4809
|
+
disabled: () => string | null;
|
|
4815
4810
|
readonly: () => any;
|
|
4811
|
+
role: () => string | null;
|
|
4812
|
+
value: () => string | null;
|
|
4813
|
+
label: () => string | null | undefined;
|
|
4814
|
+
title: () => string | null | undefined;
|
|
4815
|
+
children: (selector: string) => Element[];
|
|
4816
4816
|
parents: (selector: string) => ParentNode[];
|
|
4817
4817
|
} & {
|
|
4818
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4819
4818
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4820
4819
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4821
4820
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4853,6 +4852,7 @@ declare const MenuLocator: {
|
|
|
4853
4852
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4854
4853
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4855
4854
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4855
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4856
4856
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4857
4857
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4858
4858
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4909,25 +4909,15 @@ declare const MenuLocator: {
|
|
|
4909
4909
|
toString: (maxLength?: number | undefined, options?: {
|
|
4910
4910
|
highlight: boolean;
|
|
4911
4911
|
} | undefined) => string;
|
|
4912
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4913
|
-
children: (selector: string) => Element[];
|
|
4914
|
-
title: () => string | null | undefined;
|
|
4915
|
-
id: () => string;
|
|
4916
|
-
tagName: () => string;
|
|
4917
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
4918
|
-
getBoundingClientRect: () => DOMRect;
|
|
4919
|
-
matches: (selector: string | undefined) => boolean;
|
|
4920
4912
|
visible: () => boolean;
|
|
4921
|
-
value: () => string | null;
|
|
4922
|
-
disabled: () => string | null;
|
|
4923
|
-
role: () => string | null;
|
|
4924
|
-
label: () => string | null | undefined;
|
|
4925
4913
|
getId: () => string;
|
|
4926
4914
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
4927
4915
|
getOwnerDocument: () => Document;
|
|
4928
4916
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
4929
4917
|
getTagName: () => string;
|
|
4918
|
+
tagName: () => string;
|
|
4930
4919
|
typeIn: (text: string) => Promise<void>;
|
|
4920
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
4931
4921
|
getDOMNode: () => Element;
|
|
4932
4922
|
node: () => Element;
|
|
4933
4923
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -4937,6 +4927,7 @@ declare const MenuLocator: {
|
|
|
4937
4927
|
getTextContent: () => string | null;
|
|
4938
4928
|
getParentNode: () => ParentNode | null;
|
|
4939
4929
|
parent: () => ParentNode | null;
|
|
4930
|
+
getBoundingClientRect: () => DOMRect;
|
|
4940
4931
|
rect: () => DOMRect;
|
|
4941
4932
|
hasClass: (classname: string) => boolean;
|
|
4942
4933
|
containsFocus: () => boolean;
|
|
@@ -4948,17 +4939,25 @@ declare const MenuLocator: {
|
|
|
4948
4939
|
exists: () => boolean;
|
|
4949
4940
|
text: () => string | null;
|
|
4950
4941
|
empty: () => boolean;
|
|
4942
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
4951
4943
|
descendants: (selector: string) => Element[];
|
|
4952
4944
|
ancestors: (selector: string) => ParentNode[];
|
|
4953
4945
|
attribute: (qualifiedName: string) => string | null;
|
|
4954
4946
|
style: (property: string) => string;
|
|
4955
4947
|
classNames: () => string[];
|
|
4948
|
+
id: () => string;
|
|
4949
|
+
matches: (selector: string | undefined) => boolean;
|
|
4956
4950
|
checked: () => any;
|
|
4957
4951
|
selected: () => any;
|
|
4952
|
+
disabled: () => string | null;
|
|
4958
4953
|
readonly: () => any;
|
|
4954
|
+
role: () => string | null;
|
|
4955
|
+
value: () => string | null;
|
|
4956
|
+
label: () => string | null | undefined;
|
|
4957
|
+
title: () => string | null | undefined;
|
|
4958
|
+
children: (selector: string) => Element[];
|
|
4959
4959
|
parents: (selector: string) => ParentNode[];
|
|
4960
4960
|
} & {
|
|
4961
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4962
4961
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4963
4962
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4964
4963
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -4996,6 +4995,7 @@ declare const MenuLocator: {
|
|
|
4996
4995
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4997
4996
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4998
4997
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4998
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
4999
4999
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5000
5000
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5001
5001
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5048,25 +5048,15 @@ declare const MenuLocator: {
|
|
|
5048
5048
|
toString: (maxLength?: number | undefined, options?: {
|
|
5049
5049
|
highlight: boolean;
|
|
5050
5050
|
} | undefined) => string;
|
|
5051
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5052
|
-
children: (selector: string) => Element[];
|
|
5053
|
-
title: () => string | null | undefined;
|
|
5054
|
-
id: () => string;
|
|
5055
|
-
tagName: () => string;
|
|
5056
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
5057
|
-
getBoundingClientRect: () => DOMRect;
|
|
5058
|
-
matches: (selector: string | undefined) => boolean;
|
|
5059
5051
|
visible: () => boolean;
|
|
5060
|
-
value: () => string | null;
|
|
5061
|
-
disabled: () => string | null;
|
|
5062
|
-
role: () => string | null;
|
|
5063
|
-
label: () => string | null | undefined;
|
|
5064
5052
|
getId: () => string;
|
|
5065
5053
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
5066
5054
|
getOwnerDocument: () => Document;
|
|
5067
5055
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
5068
5056
|
getTagName: () => string;
|
|
5057
|
+
tagName: () => string;
|
|
5069
5058
|
typeIn: (text: string) => Promise<void>;
|
|
5059
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
5070
5060
|
getDOMNode: () => Element;
|
|
5071
5061
|
node: () => Element;
|
|
5072
5062
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -5076,6 +5066,7 @@ declare const MenuLocator: {
|
|
|
5076
5066
|
getTextContent: () => string | null;
|
|
5077
5067
|
getParentNode: () => ParentNode | null;
|
|
5078
5068
|
parent: () => ParentNode | null;
|
|
5069
|
+
getBoundingClientRect: () => DOMRect;
|
|
5079
5070
|
rect: () => DOMRect;
|
|
5080
5071
|
hasClass: (classname: string) => boolean;
|
|
5081
5072
|
containsFocus: () => boolean;
|
|
@@ -5087,17 +5078,25 @@ declare const MenuLocator: {
|
|
|
5087
5078
|
exists: () => boolean;
|
|
5088
5079
|
text: () => string | null;
|
|
5089
5080
|
empty: () => boolean;
|
|
5081
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5090
5082
|
descendants: (selector: string) => Element[];
|
|
5091
5083
|
ancestors: (selector: string) => ParentNode[];
|
|
5092
5084
|
attribute: (qualifiedName: string) => string | null;
|
|
5093
5085
|
style: (property: string) => string;
|
|
5094
5086
|
classNames: () => string[];
|
|
5087
|
+
id: () => string;
|
|
5088
|
+
matches: (selector: string | undefined) => boolean;
|
|
5095
5089
|
checked: () => any;
|
|
5096
5090
|
selected: () => any;
|
|
5091
|
+
disabled: () => string | null;
|
|
5097
5092
|
readonly: () => any;
|
|
5093
|
+
role: () => string | null;
|
|
5094
|
+
value: () => string | null;
|
|
5095
|
+
label: () => string | null | undefined;
|
|
5096
|
+
title: () => string | null | undefined;
|
|
5097
|
+
children: (selector: string) => Element[];
|
|
5098
5098
|
parents: (selector: string) => ParentNode[];
|
|
5099
5099
|
} & {
|
|
5100
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5101
5100
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5102
5101
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5103
5102
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5135,6 +5134,7 @@ declare const MenuLocator: {
|
|
|
5135
5134
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5136
5135
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5137
5136
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5137
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5138
5138
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5139
5139
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5140
5140
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5187,25 +5187,15 @@ declare const MenuLocator: {
|
|
|
5187
5187
|
toString: (maxLength?: number | undefined, options?: {
|
|
5188
5188
|
highlight: boolean;
|
|
5189
5189
|
} | undefined) => string;
|
|
5190
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5191
|
-
children: (selector: string) => Element[];
|
|
5192
|
-
title: () => string | null | undefined;
|
|
5193
|
-
id: () => string;
|
|
5194
|
-
tagName: () => string;
|
|
5195
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
5196
|
-
getBoundingClientRect: () => DOMRect;
|
|
5197
|
-
matches: (selector: string | undefined) => boolean;
|
|
5198
5190
|
visible: () => boolean;
|
|
5199
|
-
value: () => string | null;
|
|
5200
|
-
disabled: () => string | null;
|
|
5201
|
-
role: () => string | null;
|
|
5202
|
-
label: () => string | null | undefined;
|
|
5203
5191
|
getId: () => string;
|
|
5204
5192
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
5205
5193
|
getOwnerDocument: () => Document;
|
|
5206
5194
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
5207
5195
|
getTagName: () => string;
|
|
5196
|
+
tagName: () => string;
|
|
5208
5197
|
typeIn: (text: string) => Promise<void>;
|
|
5198
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
5209
5199
|
getDOMNode: () => Element;
|
|
5210
5200
|
node: () => Element;
|
|
5211
5201
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -5215,6 +5205,7 @@ declare const MenuLocator: {
|
|
|
5215
5205
|
getTextContent: () => string | null;
|
|
5216
5206
|
getParentNode: () => ParentNode | null;
|
|
5217
5207
|
parent: () => ParentNode | null;
|
|
5208
|
+
getBoundingClientRect: () => DOMRect;
|
|
5218
5209
|
rect: () => DOMRect;
|
|
5219
5210
|
hasClass: (classname: string) => boolean;
|
|
5220
5211
|
containsFocus: () => boolean;
|
|
@@ -5226,17 +5217,25 @@ declare const MenuLocator: {
|
|
|
5226
5217
|
exists: () => boolean;
|
|
5227
5218
|
text: () => string | null;
|
|
5228
5219
|
empty: () => boolean;
|
|
5220
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5229
5221
|
descendants: (selector: string) => Element[];
|
|
5230
5222
|
ancestors: (selector: string) => ParentNode[];
|
|
5231
5223
|
attribute: (qualifiedName: string) => string | null;
|
|
5232
5224
|
style: (property: string) => string;
|
|
5233
5225
|
classNames: () => string[];
|
|
5226
|
+
id: () => string;
|
|
5227
|
+
matches: (selector: string | undefined) => boolean;
|
|
5234
5228
|
checked: () => any;
|
|
5235
5229
|
selected: () => any;
|
|
5230
|
+
disabled: () => string | null;
|
|
5236
5231
|
readonly: () => any;
|
|
5232
|
+
role: () => string | null;
|
|
5233
|
+
value: () => string | null;
|
|
5234
|
+
label: () => string | null | undefined;
|
|
5235
|
+
title: () => string | null | undefined;
|
|
5236
|
+
children: (selector: string) => Element[];
|
|
5237
5237
|
parents: (selector: string) => ParentNode[];
|
|
5238
5238
|
} & {
|
|
5239
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5240
5239
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5241
5240
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5242
5241
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5274,6 +5273,7 @@ declare const MenuLocator: {
|
|
|
5274
5273
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5275
5274
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5276
5275
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5276
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5277
5277
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5278
5278
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5279
5279
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5326,25 +5326,15 @@ declare const MenuLocator: {
|
|
|
5326
5326
|
toString: (maxLength?: number | undefined, options?: {
|
|
5327
5327
|
highlight: boolean;
|
|
5328
5328
|
} | undefined) => string;
|
|
5329
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5330
|
-
children: (selector: string) => Element[];
|
|
5331
|
-
title: () => string | null | undefined;
|
|
5332
|
-
id: () => string;
|
|
5333
|
-
tagName: () => string;
|
|
5334
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
5335
|
-
getBoundingClientRect: () => DOMRect;
|
|
5336
|
-
matches: (selector: string | undefined) => boolean;
|
|
5337
5329
|
visible: () => boolean;
|
|
5338
|
-
value: () => string | null;
|
|
5339
|
-
disabled: () => string | null;
|
|
5340
|
-
role: () => string | null;
|
|
5341
|
-
label: () => string | null | undefined;
|
|
5342
5330
|
getId: () => string;
|
|
5343
5331
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
5344
5332
|
getOwnerDocument: () => Document;
|
|
5345
5333
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
5346
5334
|
getTagName: () => string;
|
|
5335
|
+
tagName: () => string;
|
|
5347
5336
|
typeIn: (text: string) => Promise<void>;
|
|
5337
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
5348
5338
|
getDOMNode: () => Element;
|
|
5349
5339
|
node: () => Element;
|
|
5350
5340
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -5354,6 +5344,7 @@ declare const MenuLocator: {
|
|
|
5354
5344
|
getTextContent: () => string | null;
|
|
5355
5345
|
getParentNode: () => ParentNode | null;
|
|
5356
5346
|
parent: () => ParentNode | null;
|
|
5347
|
+
getBoundingClientRect: () => DOMRect;
|
|
5357
5348
|
rect: () => DOMRect;
|
|
5358
5349
|
hasClass: (classname: string) => boolean;
|
|
5359
5350
|
containsFocus: () => boolean;
|
|
@@ -5365,17 +5356,25 @@ declare const MenuLocator: {
|
|
|
5365
5356
|
exists: () => boolean;
|
|
5366
5357
|
text: () => string | null;
|
|
5367
5358
|
empty: () => boolean;
|
|
5359
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5368
5360
|
descendants: (selector: string) => Element[];
|
|
5369
5361
|
ancestors: (selector: string) => ParentNode[];
|
|
5370
5362
|
attribute: (qualifiedName: string) => string | null;
|
|
5371
5363
|
style: (property: string) => string;
|
|
5372
5364
|
classNames: () => string[];
|
|
5365
|
+
id: () => string;
|
|
5366
|
+
matches: (selector: string | undefined) => boolean;
|
|
5373
5367
|
checked: () => any;
|
|
5374
5368
|
selected: () => any;
|
|
5369
|
+
disabled: () => string | null;
|
|
5375
5370
|
readonly: () => any;
|
|
5371
|
+
role: () => string | null;
|
|
5372
|
+
value: () => string | null;
|
|
5373
|
+
label: () => string | null | undefined;
|
|
5374
|
+
title: () => string | null | undefined;
|
|
5375
|
+
children: (selector: string) => Element[];
|
|
5376
5376
|
parents: (selector: string) => ParentNode[];
|
|
5377
5377
|
} & {
|
|
5378
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5379
5378
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5380
5379
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5381
5380
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5413,6 +5412,7 @@ declare const MenuLocator: {
|
|
|
5413
5412
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5414
5413
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5415
5414
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5415
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5416
5416
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5417
5417
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5418
5418
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5465,25 +5465,15 @@ declare const MenuLocator: {
|
|
|
5465
5465
|
toString: (maxLength?: number | undefined, options?: {
|
|
5466
5466
|
highlight: boolean;
|
|
5467
5467
|
} | undefined) => string;
|
|
5468
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5469
|
-
children: (selector: string) => Element[];
|
|
5470
|
-
title: () => string | null | undefined;
|
|
5471
|
-
id: () => string;
|
|
5472
|
-
tagName: () => string;
|
|
5473
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
5474
|
-
getBoundingClientRect: () => DOMRect;
|
|
5475
|
-
matches: (selector: string | undefined) => boolean;
|
|
5476
5468
|
visible: () => boolean;
|
|
5477
|
-
value: () => string | null;
|
|
5478
|
-
disabled: () => string | null;
|
|
5479
|
-
role: () => string | null;
|
|
5480
|
-
label: () => string | null | undefined;
|
|
5481
5469
|
getId: () => string;
|
|
5482
5470
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
5483
5471
|
getOwnerDocument: () => Document;
|
|
5484
5472
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
5485
5473
|
getTagName: () => string;
|
|
5474
|
+
tagName: () => string;
|
|
5486
5475
|
typeIn: (text: string) => Promise<void>;
|
|
5476
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
5487
5477
|
getDOMNode: () => Element;
|
|
5488
5478
|
node: () => Element;
|
|
5489
5479
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -5493,6 +5483,7 @@ declare const MenuLocator: {
|
|
|
5493
5483
|
getTextContent: () => string | null;
|
|
5494
5484
|
getParentNode: () => ParentNode | null;
|
|
5495
5485
|
parent: () => ParentNode | null;
|
|
5486
|
+
getBoundingClientRect: () => DOMRect;
|
|
5496
5487
|
rect: () => DOMRect;
|
|
5497
5488
|
hasClass: (classname: string) => boolean;
|
|
5498
5489
|
containsFocus: () => boolean;
|
|
@@ -5504,17 +5495,25 @@ declare const MenuLocator: {
|
|
|
5504
5495
|
exists: () => boolean;
|
|
5505
5496
|
text: () => string | null;
|
|
5506
5497
|
empty: () => boolean;
|
|
5498
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5507
5499
|
descendants: (selector: string) => Element[];
|
|
5508
5500
|
ancestors: (selector: string) => ParentNode[];
|
|
5509
5501
|
attribute: (qualifiedName: string) => string | null;
|
|
5510
5502
|
style: (property: string) => string;
|
|
5511
5503
|
classNames: () => string[];
|
|
5504
|
+
id: () => string;
|
|
5505
|
+
matches: (selector: string | undefined) => boolean;
|
|
5512
5506
|
checked: () => any;
|
|
5513
5507
|
selected: () => any;
|
|
5508
|
+
disabled: () => string | null;
|
|
5514
5509
|
readonly: () => any;
|
|
5510
|
+
role: () => string | null;
|
|
5511
|
+
value: () => string | null;
|
|
5512
|
+
label: () => string | null | undefined;
|
|
5513
|
+
title: () => string | null | undefined;
|
|
5514
|
+
children: (selector: string) => Element[];
|
|
5515
5515
|
parents: (selector: string) => ParentNode[];
|
|
5516
5516
|
} & {
|
|
5517
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5518
5517
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5519
5518
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5520
5519
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5552,6 +5551,7 @@ declare const MenuLocator: {
|
|
|
5552
5551
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5553
5552
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5554
5553
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5554
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5555
5555
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5556
5556
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5557
5557
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5604,25 +5604,15 @@ declare const MenuLocator: {
|
|
|
5604
5604
|
toString: (maxLength?: number | undefined, options?: {
|
|
5605
5605
|
highlight: boolean;
|
|
5606
5606
|
} | undefined) => string;
|
|
5607
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5608
|
-
children: (selector: string) => Element[];
|
|
5609
|
-
title: () => string | null | undefined;
|
|
5610
|
-
id: () => string;
|
|
5611
|
-
tagName: () => string;
|
|
5612
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
5613
|
-
getBoundingClientRect: () => DOMRect;
|
|
5614
|
-
matches: (selector: string | undefined) => boolean;
|
|
5615
5607
|
visible: () => boolean;
|
|
5616
|
-
value: () => string | null;
|
|
5617
|
-
disabled: () => string | null;
|
|
5618
|
-
role: () => string | null;
|
|
5619
|
-
label: () => string | null | undefined;
|
|
5620
5608
|
getId: () => string;
|
|
5621
5609
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
5622
5610
|
getOwnerDocument: () => Document;
|
|
5623
5611
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
5624
5612
|
getTagName: () => string;
|
|
5613
|
+
tagName: () => string;
|
|
5625
5614
|
typeIn: (text: string) => Promise<void>;
|
|
5615
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
5626
5616
|
getDOMNode: () => Element;
|
|
5627
5617
|
node: () => Element;
|
|
5628
5618
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -5632,6 +5622,7 @@ declare const MenuLocator: {
|
|
|
5632
5622
|
getTextContent: () => string | null;
|
|
5633
5623
|
getParentNode: () => ParentNode | null;
|
|
5634
5624
|
parent: () => ParentNode | null;
|
|
5625
|
+
getBoundingClientRect: () => DOMRect;
|
|
5635
5626
|
rect: () => DOMRect;
|
|
5636
5627
|
hasClass: (classname: string) => boolean;
|
|
5637
5628
|
containsFocus: () => boolean;
|
|
@@ -5643,17 +5634,25 @@ declare const MenuLocator: {
|
|
|
5643
5634
|
exists: () => boolean;
|
|
5644
5635
|
text: () => string | null;
|
|
5645
5636
|
empty: () => boolean;
|
|
5637
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5646
5638
|
descendants: (selector: string) => Element[];
|
|
5647
5639
|
ancestors: (selector: string) => ParentNode[];
|
|
5648
5640
|
attribute: (qualifiedName: string) => string | null;
|
|
5649
5641
|
style: (property: string) => string;
|
|
5650
5642
|
classNames: () => string[];
|
|
5643
|
+
id: () => string;
|
|
5644
|
+
matches: (selector: string | undefined) => boolean;
|
|
5651
5645
|
checked: () => any;
|
|
5652
5646
|
selected: () => any;
|
|
5647
|
+
disabled: () => string | null;
|
|
5653
5648
|
readonly: () => any;
|
|
5649
|
+
role: () => string | null;
|
|
5650
|
+
value: () => string | null;
|
|
5651
|
+
label: () => string | null | undefined;
|
|
5652
|
+
title: () => string | null | undefined;
|
|
5653
|
+
children: (selector: string) => Element[];
|
|
5654
5654
|
parents: (selector: string) => ParentNode[];
|
|
5655
5655
|
} & {
|
|
5656
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5657
5656
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5658
5657
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5659
5658
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5691,6 +5690,7 @@ declare const MenuLocator: {
|
|
|
5691
5690
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5692
5691
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5693
5692
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5693
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5694
5694
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5695
5695
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5696
5696
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5744,25 +5744,15 @@ declare const MenuLocator: {
|
|
|
5744
5744
|
toString: (maxLength?: number | undefined, options?: {
|
|
5745
5745
|
highlight: boolean;
|
|
5746
5746
|
} | undefined) => string;
|
|
5747
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5748
|
-
children: (selector: string) => Element[];
|
|
5749
|
-
title: () => string | null | undefined;
|
|
5750
|
-
id: () => string;
|
|
5751
|
-
tagName: () => string;
|
|
5752
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
5753
|
-
getBoundingClientRect: () => DOMRect;
|
|
5754
|
-
matches: (selector: string | undefined) => boolean;
|
|
5755
5747
|
visible: () => boolean;
|
|
5756
|
-
value: () => string | null;
|
|
5757
|
-
disabled: () => string | null;
|
|
5758
|
-
role: () => string | null;
|
|
5759
|
-
label: () => string | null | undefined;
|
|
5760
5748
|
getId: () => string;
|
|
5761
5749
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
5762
5750
|
getOwnerDocument: () => Document;
|
|
5763
5751
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
5764
5752
|
getTagName: () => string;
|
|
5753
|
+
tagName: () => string;
|
|
5765
5754
|
typeIn: (text: string) => Promise<void>;
|
|
5755
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
5766
5756
|
getDOMNode: () => Element;
|
|
5767
5757
|
node: () => Element;
|
|
5768
5758
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -5772,6 +5762,7 @@ declare const MenuLocator: {
|
|
|
5772
5762
|
getTextContent: () => string | null;
|
|
5773
5763
|
getParentNode: () => ParentNode | null;
|
|
5774
5764
|
parent: () => ParentNode | null;
|
|
5765
|
+
getBoundingClientRect: () => DOMRect;
|
|
5775
5766
|
rect: () => DOMRect;
|
|
5776
5767
|
hasClass: (classname: string) => boolean;
|
|
5777
5768
|
containsFocus: () => boolean;
|
|
@@ -5783,17 +5774,25 @@ declare const MenuLocator: {
|
|
|
5783
5774
|
exists: () => boolean;
|
|
5784
5775
|
text: () => string | null;
|
|
5785
5776
|
empty: () => boolean;
|
|
5777
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5786
5778
|
descendants: (selector: string) => Element[];
|
|
5787
5779
|
ancestors: (selector: string) => ParentNode[];
|
|
5788
5780
|
attribute: (qualifiedName: string) => string | null;
|
|
5789
5781
|
style: (property: string) => string;
|
|
5790
5782
|
classNames: () => string[];
|
|
5783
|
+
id: () => string;
|
|
5784
|
+
matches: (selector: string | undefined) => boolean;
|
|
5791
5785
|
checked: () => any;
|
|
5792
5786
|
selected: () => any;
|
|
5787
|
+
disabled: () => string | null;
|
|
5793
5788
|
readonly: () => any;
|
|
5789
|
+
role: () => string | null;
|
|
5790
|
+
value: () => string | null;
|
|
5791
|
+
label: () => string | null | undefined;
|
|
5792
|
+
title: () => string | null | undefined;
|
|
5793
|
+
children: (selector: string) => Element[];
|
|
5794
5794
|
parents: (selector: string) => ParentNode[];
|
|
5795
5795
|
} & {
|
|
5796
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5797
5796
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5798
5797
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5799
5798
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5831,6 +5830,7 @@ declare const MenuLocator: {
|
|
|
5831
5830
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5832
5831
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5833
5832
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5833
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5834
5834
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5835
5835
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5836
5836
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5883,25 +5883,15 @@ declare const MenuLocator: {
|
|
|
5883
5883
|
toString: (maxLength?: number | undefined, options?: {
|
|
5884
5884
|
highlight: boolean;
|
|
5885
5885
|
} | undefined) => string;
|
|
5886
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5887
|
-
children: (selector: string) => Element[];
|
|
5888
|
-
title: () => string | null | undefined;
|
|
5889
|
-
id: () => string;
|
|
5890
|
-
tagName: () => string;
|
|
5891
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
5892
|
-
getBoundingClientRect: () => DOMRect;
|
|
5893
|
-
matches: (selector: string | undefined) => boolean;
|
|
5894
5886
|
visible: () => boolean;
|
|
5895
|
-
value: () => string | null;
|
|
5896
|
-
disabled: () => string | null;
|
|
5897
|
-
role: () => string | null;
|
|
5898
|
-
label: () => string | null | undefined;
|
|
5899
5887
|
getId: () => string;
|
|
5900
5888
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
5901
5889
|
getOwnerDocument: () => Document;
|
|
5902
5890
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
5903
5891
|
getTagName: () => string;
|
|
5892
|
+
tagName: () => string;
|
|
5904
5893
|
typeIn: (text: string) => Promise<void>;
|
|
5894
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
5905
5895
|
getDOMNode: () => Element;
|
|
5906
5896
|
node: () => Element;
|
|
5907
5897
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -5911,6 +5901,7 @@ declare const MenuLocator: {
|
|
|
5911
5901
|
getTextContent: () => string | null;
|
|
5912
5902
|
getParentNode: () => ParentNode | null;
|
|
5913
5903
|
parent: () => ParentNode | null;
|
|
5904
|
+
getBoundingClientRect: () => DOMRect;
|
|
5914
5905
|
rect: () => DOMRect;
|
|
5915
5906
|
hasClass: (classname: string) => boolean;
|
|
5916
5907
|
containsFocus: () => boolean;
|
|
@@ -5922,17 +5913,25 @@ declare const MenuLocator: {
|
|
|
5922
5913
|
exists: () => boolean;
|
|
5923
5914
|
text: () => string | null;
|
|
5924
5915
|
empty: () => boolean;
|
|
5916
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
5925
5917
|
descendants: (selector: string) => Element[];
|
|
5926
5918
|
ancestors: (selector: string) => ParentNode[];
|
|
5927
5919
|
attribute: (qualifiedName: string) => string | null;
|
|
5928
5920
|
style: (property: string) => string;
|
|
5929
5921
|
classNames: () => string[];
|
|
5922
|
+
id: () => string;
|
|
5923
|
+
matches: (selector: string | undefined) => boolean;
|
|
5930
5924
|
checked: () => any;
|
|
5931
5925
|
selected: () => any;
|
|
5926
|
+
disabled: () => string | null;
|
|
5932
5927
|
readonly: () => any;
|
|
5928
|
+
role: () => string | null;
|
|
5929
|
+
value: () => string | null;
|
|
5930
|
+
label: () => string | null | undefined;
|
|
5931
|
+
title: () => string | null | undefined;
|
|
5932
|
+
children: (selector: string) => Element[];
|
|
5933
5933
|
parents: (selector: string) => ParentNode[];
|
|
5934
5934
|
} & {
|
|
5935
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5936
5935
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5937
5936
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5938
5937
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -5970,6 +5969,7 @@ declare const MenuLocator: {
|
|
|
5970
5969
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5971
5970
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5972
5971
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5972
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5973
5973
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5974
5974
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
5975
5975
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -6022,25 +6022,15 @@ declare const MenuLocator: {
|
|
|
6022
6022
|
toString: (maxLength?: number | undefined, options?: {
|
|
6023
6023
|
highlight: boolean;
|
|
6024
6024
|
} | undefined) => string;
|
|
6025
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
6026
|
-
children: (selector: string) => Element[];
|
|
6027
|
-
title: () => string | null | undefined;
|
|
6028
|
-
id: () => string;
|
|
6029
|
-
tagName: () => string;
|
|
6030
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
6031
|
-
getBoundingClientRect: () => DOMRect;
|
|
6032
|
-
matches: (selector: string | undefined) => boolean;
|
|
6033
6025
|
visible: () => boolean;
|
|
6034
|
-
value: () => string | null;
|
|
6035
|
-
disabled: () => string | null;
|
|
6036
|
-
role: () => string | null;
|
|
6037
|
-
label: () => string | null | undefined;
|
|
6038
6026
|
getId: () => string;
|
|
6039
6027
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
6040
6028
|
getOwnerDocument: () => Document;
|
|
6041
6029
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
6042
6030
|
getTagName: () => string;
|
|
6031
|
+
tagName: () => string;
|
|
6043
6032
|
typeIn: (text: string) => Promise<void>;
|
|
6033
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
6044
6034
|
getDOMNode: () => Element;
|
|
6045
6035
|
node: () => Element;
|
|
6046
6036
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -6050,6 +6040,7 @@ declare const MenuLocator: {
|
|
|
6050
6040
|
getTextContent: () => string | null;
|
|
6051
6041
|
getParentNode: () => ParentNode | null;
|
|
6052
6042
|
parent: () => ParentNode | null;
|
|
6043
|
+
getBoundingClientRect: () => DOMRect;
|
|
6053
6044
|
rect: () => DOMRect;
|
|
6054
6045
|
hasClass: (classname: string) => boolean;
|
|
6055
6046
|
containsFocus: () => boolean;
|
|
@@ -6061,17 +6052,25 @@ declare const MenuLocator: {
|
|
|
6061
6052
|
exists: () => boolean;
|
|
6062
6053
|
text: () => string | null;
|
|
6063
6054
|
empty: () => boolean;
|
|
6055
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
6064
6056
|
descendants: (selector: string) => Element[];
|
|
6065
6057
|
ancestors: (selector: string) => ParentNode[];
|
|
6066
6058
|
attribute: (qualifiedName: string) => string | null;
|
|
6067
6059
|
style: (property: string) => string;
|
|
6068
6060
|
classNames: () => string[];
|
|
6061
|
+
id: () => string;
|
|
6062
|
+
matches: (selector: string | undefined) => boolean;
|
|
6069
6063
|
checked: () => any;
|
|
6070
6064
|
selected: () => any;
|
|
6065
|
+
disabled: () => string | null;
|
|
6071
6066
|
readonly: () => any;
|
|
6067
|
+
role: () => string | null;
|
|
6068
|
+
value: () => string | null;
|
|
6069
|
+
label: () => string | null | undefined;
|
|
6070
|
+
title: () => string | null | undefined;
|
|
6071
|
+
children: (selector: string) => Element[];
|
|
6072
6072
|
parents: (selector: string) => ParentNode[];
|
|
6073
6073
|
} & {
|
|
6074
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6075
6074
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6076
6075
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6077
6076
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -6109,6 +6108,7 @@ declare const MenuLocator: {
|
|
|
6109
6108
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6110
6109
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6111
6110
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6111
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6112
6112
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6113
6113
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
6114
6114
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|