@instructure/ui-navigation 8.10.2 → 8.10.3-snapshot.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +27 -0
- package/package.json +25 -24
- package/src/Navigation/NavigationItem/index.tsx +1 -1
- package/types/AppNav/AppNavLocator.d.ts +224 -224
- package/types/AppNav/Item/AppNavItemLocator.d.ts +64 -64
- package/types/Navigation/NavigationItem/NavigationItemLocator.d.ts +64 -64
- package/types/Navigation/NavigationLocator.d.ts +224 -224
|
@@ -13,24 +13,28 @@ export declare const AppNavLocator: {
|
|
|
13
13
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
14
14
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
15
15
|
} & {
|
|
16
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
17
|
+
highlight: boolean;
|
|
18
|
+
} | undefined) => string;
|
|
19
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
20
|
+
children: (selector: string) => Element[];
|
|
21
|
+
title: () => string | null | undefined;
|
|
22
|
+
id: () => string;
|
|
23
|
+
tagName: () => string;
|
|
24
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
25
|
+
getBoundingClientRect: () => DOMRect;
|
|
26
|
+
matches: (selector: string | undefined) => boolean;
|
|
16
27
|
visible: () => boolean;
|
|
17
28
|
value: () => string | null;
|
|
18
29
|
disabled: () => string | null;
|
|
19
30
|
role: () => string | null;
|
|
20
|
-
id: () => string;
|
|
21
31
|
label: () => string | null | undefined;
|
|
22
|
-
title: () => string | null | undefined;
|
|
23
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
24
|
-
highlight: boolean;
|
|
25
|
-
} | undefined) => string;
|
|
26
32
|
getId: () => string;
|
|
27
33
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
28
34
|
getOwnerDocument: () => Document;
|
|
29
35
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
30
36
|
getTagName: () => string;
|
|
31
|
-
tagName: () => string;
|
|
32
37
|
typeIn: (text: string) => Promise<void>;
|
|
33
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
34
38
|
getDOMNode: () => Element;
|
|
35
39
|
node: () => Element;
|
|
36
40
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -38,9 +42,8 @@ export declare const AppNavLocator: {
|
|
|
38
42
|
} | undefined) => void;
|
|
39
43
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
40
44
|
getTextContent: () => string | null;
|
|
41
|
-
getParentNode: () =>
|
|
42
|
-
parent: () =>
|
|
43
|
-
getBoundingClientRect: () => DOMRect;
|
|
45
|
+
getParentNode: () => ParentNode | null;
|
|
46
|
+
parent: () => ParentNode | null;
|
|
44
47
|
rect: () => DOMRect;
|
|
45
48
|
hasClass: (classname: string) => boolean;
|
|
46
49
|
containsFocus: () => boolean;
|
|
@@ -52,19 +55,17 @@ export declare const AppNavLocator: {
|
|
|
52
55
|
exists: () => boolean;
|
|
53
56
|
text: () => string | null;
|
|
54
57
|
empty: () => boolean;
|
|
55
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
56
58
|
descendants: (selector: string) => Element[];
|
|
57
|
-
ancestors: (selector: string) =>
|
|
59
|
+
ancestors: (selector: string) => ParentNode[];
|
|
58
60
|
attribute: (qualifiedName: string) => string | null;
|
|
59
61
|
style: (property: string) => string;
|
|
60
62
|
classNames: () => string[];
|
|
61
|
-
matches: (selector: string | undefined) => boolean;
|
|
62
63
|
checked: () => any;
|
|
63
64
|
selected: () => any;
|
|
64
65
|
readonly: () => any;
|
|
65
|
-
|
|
66
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
66
|
+
parents: (selector: string) => ParentNode[];
|
|
67
67
|
} & {
|
|
68
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
68
69
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
69
70
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
70
71
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -102,7 +103,6 @@ export declare const AppNavLocator: {
|
|
|
102
103
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
103
104
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
104
105
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
106
106
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
107
107
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
108
108
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -152,24 +152,28 @@ export declare const AppNavLocator: {
|
|
|
152
152
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
153
153
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
154
154
|
} & {
|
|
155
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
156
|
+
highlight: boolean;
|
|
157
|
+
} | undefined) => string;
|
|
158
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
159
|
+
children: (selector: string) => Element[];
|
|
160
|
+
title: () => string | null | undefined;
|
|
161
|
+
id: () => string;
|
|
162
|
+
tagName: () => string;
|
|
163
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
164
|
+
getBoundingClientRect: () => DOMRect;
|
|
165
|
+
matches: (selector: string | undefined) => boolean;
|
|
155
166
|
visible: () => boolean;
|
|
156
167
|
value: () => string | null;
|
|
157
168
|
disabled: () => string | null;
|
|
158
169
|
role: () => string | null;
|
|
159
|
-
id: () => string;
|
|
160
170
|
label: () => string | null | undefined;
|
|
161
|
-
title: () => string | null | undefined;
|
|
162
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
163
|
-
highlight: boolean;
|
|
164
|
-
} | undefined) => string;
|
|
165
171
|
getId: () => string;
|
|
166
172
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
167
173
|
getOwnerDocument: () => Document;
|
|
168
174
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
169
175
|
getTagName: () => string;
|
|
170
|
-
tagName: () => string;
|
|
171
176
|
typeIn: (text: string) => Promise<void>;
|
|
172
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
173
177
|
getDOMNode: () => Element;
|
|
174
178
|
node: () => Element;
|
|
175
179
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -177,9 +181,8 @@ export declare const AppNavLocator: {
|
|
|
177
181
|
} | undefined) => void;
|
|
178
182
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
179
183
|
getTextContent: () => string | null;
|
|
180
|
-
getParentNode: () =>
|
|
181
|
-
parent: () =>
|
|
182
|
-
getBoundingClientRect: () => DOMRect;
|
|
184
|
+
getParentNode: () => ParentNode | null;
|
|
185
|
+
parent: () => ParentNode | null;
|
|
183
186
|
rect: () => DOMRect;
|
|
184
187
|
hasClass: (classname: string) => boolean;
|
|
185
188
|
containsFocus: () => boolean;
|
|
@@ -191,19 +194,17 @@ export declare const AppNavLocator: {
|
|
|
191
194
|
exists: () => boolean;
|
|
192
195
|
text: () => string | null;
|
|
193
196
|
empty: () => boolean;
|
|
194
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
195
197
|
descendants: (selector: string) => Element[];
|
|
196
|
-
ancestors: (selector: string) =>
|
|
198
|
+
ancestors: (selector: string) => ParentNode[];
|
|
197
199
|
attribute: (qualifiedName: string) => string | null;
|
|
198
200
|
style: (property: string) => string;
|
|
199
201
|
classNames: () => string[];
|
|
200
|
-
matches: (selector: string | undefined) => boolean;
|
|
201
202
|
checked: () => any;
|
|
202
203
|
selected: () => any;
|
|
203
204
|
readonly: () => any;
|
|
204
|
-
|
|
205
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
205
|
+
parents: (selector: string) => ParentNode[];
|
|
206
206
|
} & {
|
|
207
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
207
208
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
208
209
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
209
210
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -241,7 +242,6 @@ export declare const AppNavLocator: {
|
|
|
241
242
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
242
243
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
243
244
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
245
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
246
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
247
247
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -298,24 +298,28 @@ export declare const AppNavLocator: {
|
|
|
298
298
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
299
299
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
300
300
|
} & {
|
|
301
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
302
|
+
highlight: boolean;
|
|
303
|
+
} | undefined) => string;
|
|
304
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
305
|
+
children: (selector: string) => Element[];
|
|
306
|
+
title: () => string | null | undefined;
|
|
307
|
+
id: () => string;
|
|
308
|
+
tagName: () => string;
|
|
309
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
310
|
+
getBoundingClientRect: () => DOMRect;
|
|
311
|
+
matches: (selector: string | undefined) => boolean;
|
|
301
312
|
visible: () => boolean;
|
|
302
313
|
value: () => string | null;
|
|
303
314
|
disabled: () => string | null;
|
|
304
315
|
role: () => string | null;
|
|
305
|
-
id: () => string;
|
|
306
316
|
label: () => string | null | undefined;
|
|
307
|
-
title: () => string | null | undefined;
|
|
308
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
309
|
-
highlight: boolean;
|
|
310
|
-
} | undefined) => string;
|
|
311
317
|
getId: () => string;
|
|
312
318
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
313
319
|
getOwnerDocument: () => Document;
|
|
314
320
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
315
321
|
getTagName: () => string;
|
|
316
|
-
tagName: () => string;
|
|
317
322
|
typeIn: (text: string) => Promise<void>;
|
|
318
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
319
323
|
getDOMNode: () => Element;
|
|
320
324
|
node: () => Element;
|
|
321
325
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -323,9 +327,8 @@ export declare const AppNavLocator: {
|
|
|
323
327
|
} | undefined) => void;
|
|
324
328
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
325
329
|
getTextContent: () => string | null;
|
|
326
|
-
getParentNode: () =>
|
|
327
|
-
parent: () =>
|
|
328
|
-
getBoundingClientRect: () => DOMRect;
|
|
330
|
+
getParentNode: () => ParentNode | null;
|
|
331
|
+
parent: () => ParentNode | null;
|
|
329
332
|
rect: () => DOMRect;
|
|
330
333
|
hasClass: (classname: string) => boolean;
|
|
331
334
|
containsFocus: () => boolean;
|
|
@@ -337,19 +340,17 @@ export declare const AppNavLocator: {
|
|
|
337
340
|
exists: () => boolean;
|
|
338
341
|
text: () => string | null;
|
|
339
342
|
empty: () => boolean;
|
|
340
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
341
343
|
descendants: (selector: string) => Element[];
|
|
342
|
-
ancestors: (selector: string) =>
|
|
344
|
+
ancestors: (selector: string) => ParentNode[];
|
|
343
345
|
attribute: (qualifiedName: string) => string | null;
|
|
344
346
|
style: (property: string) => string;
|
|
345
347
|
classNames: () => string[];
|
|
346
|
-
matches: (selector: string | undefined) => boolean;
|
|
347
348
|
checked: () => any;
|
|
348
349
|
selected: () => any;
|
|
349
350
|
readonly: () => any;
|
|
350
|
-
|
|
351
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
351
|
+
parents: (selector: string) => ParentNode[];
|
|
352
352
|
} & {
|
|
353
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
353
354
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
354
355
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
355
356
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -387,7 +388,6 @@ export declare const AppNavLocator: {
|
|
|
387
388
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
388
389
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
390
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
391
391
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
392
392
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
393
393
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -437,24 +437,28 @@ export declare const AppNavLocator: {
|
|
|
437
437
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
438
438
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
439
439
|
} & {
|
|
440
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
441
|
+
highlight: boolean;
|
|
442
|
+
} | undefined) => string;
|
|
443
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
444
|
+
children: (selector: string) => Element[];
|
|
445
|
+
title: () => string | null | undefined;
|
|
446
|
+
id: () => string;
|
|
447
|
+
tagName: () => string;
|
|
448
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
449
|
+
getBoundingClientRect: () => DOMRect;
|
|
450
|
+
matches: (selector: string | undefined) => boolean;
|
|
440
451
|
visible: () => boolean;
|
|
441
452
|
value: () => string | null;
|
|
442
453
|
disabled: () => string | null;
|
|
443
454
|
role: () => string | null;
|
|
444
|
-
id: () => string;
|
|
445
455
|
label: () => string | null | undefined;
|
|
446
|
-
title: () => string | null | undefined;
|
|
447
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
448
|
-
highlight: boolean;
|
|
449
|
-
} | undefined) => string;
|
|
450
456
|
getId: () => string;
|
|
451
457
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
452
458
|
getOwnerDocument: () => Document;
|
|
453
459
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
454
460
|
getTagName: () => string;
|
|
455
|
-
tagName: () => string;
|
|
456
461
|
typeIn: (text: string) => Promise<void>;
|
|
457
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
458
462
|
getDOMNode: () => Element;
|
|
459
463
|
node: () => Element;
|
|
460
464
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -462,9 +466,8 @@ export declare const AppNavLocator: {
|
|
|
462
466
|
} | undefined) => void;
|
|
463
467
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
464
468
|
getTextContent: () => string | null;
|
|
465
|
-
getParentNode: () =>
|
|
466
|
-
parent: () =>
|
|
467
|
-
getBoundingClientRect: () => DOMRect;
|
|
469
|
+
getParentNode: () => ParentNode | null;
|
|
470
|
+
parent: () => ParentNode | null;
|
|
468
471
|
rect: () => DOMRect;
|
|
469
472
|
hasClass: (classname: string) => boolean;
|
|
470
473
|
containsFocus: () => boolean;
|
|
@@ -476,19 +479,17 @@ export declare const AppNavLocator: {
|
|
|
476
479
|
exists: () => boolean;
|
|
477
480
|
text: () => string | null;
|
|
478
481
|
empty: () => boolean;
|
|
479
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
480
482
|
descendants: (selector: string) => Element[];
|
|
481
|
-
ancestors: (selector: string) =>
|
|
483
|
+
ancestors: (selector: string) => ParentNode[];
|
|
482
484
|
attribute: (qualifiedName: string) => string | null;
|
|
483
485
|
style: (property: string) => string;
|
|
484
486
|
classNames: () => string[];
|
|
485
|
-
matches: (selector: string | undefined) => boolean;
|
|
486
487
|
checked: () => any;
|
|
487
488
|
selected: () => any;
|
|
488
489
|
readonly: () => any;
|
|
489
|
-
|
|
490
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
490
|
+
parents: (selector: string) => ParentNode[];
|
|
491
491
|
} & {
|
|
492
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
492
493
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
493
494
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
494
495
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -526,7 +527,6 @@ export declare const AppNavLocator: {
|
|
|
526
527
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
527
528
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
528
529
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
529
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
530
530
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
531
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
532
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -576,24 +576,28 @@ export declare const AppNavLocator: {
|
|
|
576
576
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
577
577
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
578
578
|
} & {
|
|
579
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
580
|
+
highlight: boolean;
|
|
581
|
+
} | undefined) => string;
|
|
582
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
583
|
+
children: (selector: string) => Element[];
|
|
584
|
+
title: () => string | null | undefined;
|
|
585
|
+
id: () => string;
|
|
586
|
+
tagName: () => string;
|
|
587
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
588
|
+
getBoundingClientRect: () => DOMRect;
|
|
589
|
+
matches: (selector: string | undefined) => boolean;
|
|
579
590
|
visible: () => boolean;
|
|
580
591
|
value: () => string | null;
|
|
581
592
|
disabled: () => string | null;
|
|
582
593
|
role: () => string | null;
|
|
583
|
-
id: () => string;
|
|
584
594
|
label: () => string | null | undefined;
|
|
585
|
-
title: () => string | null | undefined;
|
|
586
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
587
|
-
highlight: boolean;
|
|
588
|
-
} | undefined) => string;
|
|
589
595
|
getId: () => string;
|
|
590
596
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
591
597
|
getOwnerDocument: () => Document;
|
|
592
598
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
593
599
|
getTagName: () => string;
|
|
594
|
-
tagName: () => string;
|
|
595
600
|
typeIn: (text: string) => Promise<void>;
|
|
596
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
597
601
|
getDOMNode: () => Element;
|
|
598
602
|
node: () => Element;
|
|
599
603
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -601,9 +605,8 @@ export declare const AppNavLocator: {
|
|
|
601
605
|
} | undefined) => void;
|
|
602
606
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
603
607
|
getTextContent: () => string | null;
|
|
604
|
-
getParentNode: () =>
|
|
605
|
-
parent: () =>
|
|
606
|
-
getBoundingClientRect: () => DOMRect;
|
|
608
|
+
getParentNode: () => ParentNode | null;
|
|
609
|
+
parent: () => ParentNode | null;
|
|
607
610
|
rect: () => DOMRect;
|
|
608
611
|
hasClass: (classname: string) => boolean;
|
|
609
612
|
containsFocus: () => boolean;
|
|
@@ -615,19 +618,17 @@ export declare const AppNavLocator: {
|
|
|
615
618
|
exists: () => boolean;
|
|
616
619
|
text: () => string | null;
|
|
617
620
|
empty: () => boolean;
|
|
618
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
619
621
|
descendants: (selector: string) => Element[];
|
|
620
|
-
ancestors: (selector: string) =>
|
|
622
|
+
ancestors: (selector: string) => ParentNode[];
|
|
621
623
|
attribute: (qualifiedName: string) => string | null;
|
|
622
624
|
style: (property: string) => string;
|
|
623
625
|
classNames: () => string[];
|
|
624
|
-
matches: (selector: string | undefined) => boolean;
|
|
625
626
|
checked: () => any;
|
|
626
627
|
selected: () => any;
|
|
627
628
|
readonly: () => any;
|
|
628
|
-
|
|
629
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
629
|
+
parents: (selector: string) => ParentNode[];
|
|
630
630
|
} & {
|
|
631
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
631
632
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
632
633
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
633
634
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -665,7 +666,6 @@ export declare const AppNavLocator: {
|
|
|
665
666
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
666
667
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
667
668
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
668
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
669
669
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
670
670
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
671
671
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -716,24 +716,28 @@ export declare const AppNavLocator: {
|
|
|
716
716
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
717
717
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
718
718
|
} & {
|
|
719
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
720
|
+
highlight: boolean;
|
|
721
|
+
} | undefined) => string;
|
|
722
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
723
|
+
children: (selector: string) => Element[];
|
|
724
|
+
title: () => string | null | undefined;
|
|
725
|
+
id: () => string;
|
|
726
|
+
tagName: () => string;
|
|
727
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
728
|
+
getBoundingClientRect: () => DOMRect;
|
|
729
|
+
matches: (selector: string | undefined) => boolean;
|
|
719
730
|
visible: () => boolean;
|
|
720
731
|
value: () => string | null;
|
|
721
732
|
disabled: () => string | null;
|
|
722
733
|
role: () => string | null;
|
|
723
|
-
id: () => string;
|
|
724
734
|
label: () => string | null | undefined;
|
|
725
|
-
title: () => string | null | undefined;
|
|
726
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
727
|
-
highlight: boolean;
|
|
728
|
-
} | undefined) => string;
|
|
729
735
|
getId: () => string;
|
|
730
736
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
731
737
|
getOwnerDocument: () => Document;
|
|
732
738
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
733
739
|
getTagName: () => string;
|
|
734
|
-
tagName: () => string;
|
|
735
740
|
typeIn: (text: string) => Promise<void>;
|
|
736
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
737
741
|
getDOMNode: () => Element;
|
|
738
742
|
node: () => Element;
|
|
739
743
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -741,9 +745,8 @@ export declare const AppNavLocator: {
|
|
|
741
745
|
} | undefined) => void;
|
|
742
746
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
743
747
|
getTextContent: () => string | null;
|
|
744
|
-
getParentNode: () =>
|
|
745
|
-
parent: () =>
|
|
746
|
-
getBoundingClientRect: () => DOMRect;
|
|
748
|
+
getParentNode: () => ParentNode | null;
|
|
749
|
+
parent: () => ParentNode | null;
|
|
747
750
|
rect: () => DOMRect;
|
|
748
751
|
hasClass: (classname: string) => boolean;
|
|
749
752
|
containsFocus: () => boolean;
|
|
@@ -755,19 +758,17 @@ export declare const AppNavLocator: {
|
|
|
755
758
|
exists: () => boolean;
|
|
756
759
|
text: () => string | null;
|
|
757
760
|
empty: () => boolean;
|
|
758
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
759
761
|
descendants: (selector: string) => Element[];
|
|
760
|
-
ancestors: (selector: string) =>
|
|
762
|
+
ancestors: (selector: string) => ParentNode[];
|
|
761
763
|
attribute: (qualifiedName: string) => string | null;
|
|
762
764
|
style: (property: string) => string;
|
|
763
765
|
classNames: () => string[];
|
|
764
|
-
matches: (selector: string | undefined) => boolean;
|
|
765
766
|
checked: () => any;
|
|
766
767
|
selected: () => any;
|
|
767
768
|
readonly: () => any;
|
|
768
|
-
|
|
769
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
769
|
+
parents: (selector: string) => ParentNode[];
|
|
770
770
|
} & {
|
|
771
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
771
772
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
772
773
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
773
774
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -805,7 +806,6 @@ export declare const AppNavLocator: {
|
|
|
805
806
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
806
807
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
807
808
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
808
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
809
809
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
810
810
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
811
811
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -855,24 +855,28 @@ export declare const AppNavLocator: {
|
|
|
855
855
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
856
856
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
857
857
|
} & {
|
|
858
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
859
|
+
highlight: boolean;
|
|
860
|
+
} | undefined) => string;
|
|
861
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
862
|
+
children: (selector: string) => Element[];
|
|
863
|
+
title: () => string | null | undefined;
|
|
864
|
+
id: () => string;
|
|
865
|
+
tagName: () => string;
|
|
866
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
867
|
+
getBoundingClientRect: () => DOMRect;
|
|
868
|
+
matches: (selector: string | undefined) => boolean;
|
|
858
869
|
visible: () => boolean;
|
|
859
870
|
value: () => string | null;
|
|
860
871
|
disabled: () => string | null;
|
|
861
872
|
role: () => string | null;
|
|
862
|
-
id: () => string;
|
|
863
873
|
label: () => string | null | undefined;
|
|
864
|
-
title: () => string | null | undefined;
|
|
865
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
866
|
-
highlight: boolean;
|
|
867
|
-
} | undefined) => string;
|
|
868
874
|
getId: () => string;
|
|
869
875
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
870
876
|
getOwnerDocument: () => Document;
|
|
871
877
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
872
878
|
getTagName: () => string;
|
|
873
|
-
tagName: () => string;
|
|
874
879
|
typeIn: (text: string) => Promise<void>;
|
|
875
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
876
880
|
getDOMNode: () => Element;
|
|
877
881
|
node: () => Element;
|
|
878
882
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -880,9 +884,8 @@ export declare const AppNavLocator: {
|
|
|
880
884
|
} | undefined) => void;
|
|
881
885
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
882
886
|
getTextContent: () => string | null;
|
|
883
|
-
getParentNode: () =>
|
|
884
|
-
parent: () =>
|
|
885
|
-
getBoundingClientRect: () => DOMRect;
|
|
887
|
+
getParentNode: () => ParentNode | null;
|
|
888
|
+
parent: () => ParentNode | null;
|
|
886
889
|
rect: () => DOMRect;
|
|
887
890
|
hasClass: (classname: string) => boolean;
|
|
888
891
|
containsFocus: () => boolean;
|
|
@@ -894,19 +897,17 @@ export declare const AppNavLocator: {
|
|
|
894
897
|
exists: () => boolean;
|
|
895
898
|
text: () => string | null;
|
|
896
899
|
empty: () => boolean;
|
|
897
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
898
900
|
descendants: (selector: string) => Element[];
|
|
899
|
-
ancestors: (selector: string) =>
|
|
901
|
+
ancestors: (selector: string) => ParentNode[];
|
|
900
902
|
attribute: (qualifiedName: string) => string | null;
|
|
901
903
|
style: (property: string) => string;
|
|
902
904
|
classNames: () => string[];
|
|
903
|
-
matches: (selector: string | undefined) => boolean;
|
|
904
905
|
checked: () => any;
|
|
905
906
|
selected: () => any;
|
|
906
907
|
readonly: () => any;
|
|
907
|
-
|
|
908
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
908
|
+
parents: (selector: string) => ParentNode[];
|
|
909
909
|
} & {
|
|
910
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
910
911
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
911
912
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
912
913
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -944,7 +945,6 @@ export declare const AppNavLocator: {
|
|
|
944
945
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
945
946
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
946
947
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
947
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
948
948
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
949
949
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
950
950
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -994,24 +994,28 @@ export declare const AppNavLocator: {
|
|
|
994
994
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
995
995
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
996
996
|
} & {
|
|
997
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
998
|
+
highlight: boolean;
|
|
999
|
+
} | undefined) => string;
|
|
1000
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1001
|
+
children: (selector: string) => Element[];
|
|
1002
|
+
title: () => string | null | undefined;
|
|
1003
|
+
id: () => string;
|
|
1004
|
+
tagName: () => string;
|
|
1005
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1006
|
+
getBoundingClientRect: () => DOMRect;
|
|
1007
|
+
matches: (selector: string | undefined) => boolean;
|
|
997
1008
|
visible: () => boolean;
|
|
998
1009
|
value: () => string | null;
|
|
999
1010
|
disabled: () => string | null;
|
|
1000
1011
|
role: () => string | null;
|
|
1001
|
-
id: () => string;
|
|
1002
1012
|
label: () => string | null | undefined;
|
|
1003
|
-
title: () => string | null | undefined;
|
|
1004
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1005
|
-
highlight: boolean;
|
|
1006
|
-
} | undefined) => string;
|
|
1007
1013
|
getId: () => string;
|
|
1008
1014
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1009
1015
|
getOwnerDocument: () => Document;
|
|
1010
1016
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1011
1017
|
getTagName: () => string;
|
|
1012
|
-
tagName: () => string;
|
|
1013
1018
|
typeIn: (text: string) => Promise<void>;
|
|
1014
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1015
1019
|
getDOMNode: () => Element;
|
|
1016
1020
|
node: () => Element;
|
|
1017
1021
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1019,9 +1023,8 @@ export declare const AppNavLocator: {
|
|
|
1019
1023
|
} | undefined) => void;
|
|
1020
1024
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1021
1025
|
getTextContent: () => string | null;
|
|
1022
|
-
getParentNode: () =>
|
|
1023
|
-
parent: () =>
|
|
1024
|
-
getBoundingClientRect: () => DOMRect;
|
|
1026
|
+
getParentNode: () => ParentNode | null;
|
|
1027
|
+
parent: () => ParentNode | null;
|
|
1025
1028
|
rect: () => DOMRect;
|
|
1026
1029
|
hasClass: (classname: string) => boolean;
|
|
1027
1030
|
containsFocus: () => boolean;
|
|
@@ -1033,19 +1036,17 @@ export declare const AppNavLocator: {
|
|
|
1033
1036
|
exists: () => boolean;
|
|
1034
1037
|
text: () => string | null;
|
|
1035
1038
|
empty: () => boolean;
|
|
1036
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1037
1039
|
descendants: (selector: string) => Element[];
|
|
1038
|
-
ancestors: (selector: string) =>
|
|
1040
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1039
1041
|
attribute: (qualifiedName: string) => string | null;
|
|
1040
1042
|
style: (property: string) => string;
|
|
1041
1043
|
classNames: () => string[];
|
|
1042
|
-
matches: (selector: string | undefined) => boolean;
|
|
1043
1044
|
checked: () => any;
|
|
1044
1045
|
selected: () => any;
|
|
1045
1046
|
readonly: () => any;
|
|
1046
|
-
|
|
1047
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1047
|
+
parents: (selector: string) => ParentNode[];
|
|
1048
1048
|
} & {
|
|
1049
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1049
1050
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1050
1051
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1051
1052
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1083,7 +1084,6 @@ export declare const AppNavLocator: {
|
|
|
1083
1084
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1084
1085
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1085
1086
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1086
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1087
1087
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1088
1088
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1089
1089
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1134,24 +1134,28 @@ export declare const AppNavLocator: {
|
|
|
1134
1134
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1135
1135
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1136
1136
|
} & {
|
|
1137
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1138
|
+
highlight: boolean;
|
|
1139
|
+
} | undefined) => string;
|
|
1140
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1141
|
+
children: (selector: string) => Element[];
|
|
1142
|
+
title: () => string | null | undefined;
|
|
1143
|
+
id: () => string;
|
|
1144
|
+
tagName: () => string;
|
|
1145
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1146
|
+
getBoundingClientRect: () => DOMRect;
|
|
1147
|
+
matches: (selector: string | undefined) => boolean;
|
|
1137
1148
|
visible: () => boolean;
|
|
1138
1149
|
value: () => string | null;
|
|
1139
1150
|
disabled: () => string | null;
|
|
1140
1151
|
role: () => string | null;
|
|
1141
|
-
id: () => string;
|
|
1142
1152
|
label: () => string | null | undefined;
|
|
1143
|
-
title: () => string | null | undefined;
|
|
1144
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1145
|
-
highlight: boolean;
|
|
1146
|
-
} | undefined) => string;
|
|
1147
1153
|
getId: () => string;
|
|
1148
1154
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1149
1155
|
getOwnerDocument: () => Document;
|
|
1150
1156
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1151
1157
|
getTagName: () => string;
|
|
1152
|
-
tagName: () => string;
|
|
1153
1158
|
typeIn: (text: string) => Promise<void>;
|
|
1154
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1155
1159
|
getDOMNode: () => Element;
|
|
1156
1160
|
node: () => Element;
|
|
1157
1161
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1159,9 +1163,8 @@ export declare const AppNavLocator: {
|
|
|
1159
1163
|
} | undefined) => void;
|
|
1160
1164
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1161
1165
|
getTextContent: () => string | null;
|
|
1162
|
-
getParentNode: () =>
|
|
1163
|
-
parent: () =>
|
|
1164
|
-
getBoundingClientRect: () => DOMRect;
|
|
1166
|
+
getParentNode: () => ParentNode | null;
|
|
1167
|
+
parent: () => ParentNode | null;
|
|
1165
1168
|
rect: () => DOMRect;
|
|
1166
1169
|
hasClass: (classname: string) => boolean;
|
|
1167
1170
|
containsFocus: () => boolean;
|
|
@@ -1173,19 +1176,17 @@ export declare const AppNavLocator: {
|
|
|
1173
1176
|
exists: () => boolean;
|
|
1174
1177
|
text: () => string | null;
|
|
1175
1178
|
empty: () => boolean;
|
|
1176
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1177
1179
|
descendants: (selector: string) => Element[];
|
|
1178
|
-
ancestors: (selector: string) =>
|
|
1180
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1179
1181
|
attribute: (qualifiedName: string) => string | null;
|
|
1180
1182
|
style: (property: string) => string;
|
|
1181
1183
|
classNames: () => string[];
|
|
1182
|
-
matches: (selector: string | undefined) => boolean;
|
|
1183
1184
|
checked: () => any;
|
|
1184
1185
|
selected: () => any;
|
|
1185
1186
|
readonly: () => any;
|
|
1186
|
-
|
|
1187
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1187
|
+
parents: (selector: string) => ParentNode[];
|
|
1188
1188
|
} & {
|
|
1189
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1189
1190
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1190
1191
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1191
1192
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1223,7 +1224,6 @@ export declare const AppNavLocator: {
|
|
|
1223
1224
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1224
1225
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1225
1226
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1226
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1227
1227
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1228
1228
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1229
1229
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1273,24 +1273,28 @@ export declare const AppNavLocator: {
|
|
|
1273
1273
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1274
1274
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1275
1275
|
} & {
|
|
1276
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1277
|
+
highlight: boolean;
|
|
1278
|
+
} | undefined) => string;
|
|
1279
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1280
|
+
children: (selector: string) => Element[];
|
|
1281
|
+
title: () => string | null | undefined;
|
|
1282
|
+
id: () => string;
|
|
1283
|
+
tagName: () => string;
|
|
1284
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1285
|
+
getBoundingClientRect: () => DOMRect;
|
|
1286
|
+
matches: (selector: string | undefined) => boolean;
|
|
1276
1287
|
visible: () => boolean;
|
|
1277
1288
|
value: () => string | null;
|
|
1278
1289
|
disabled: () => string | null;
|
|
1279
1290
|
role: () => string | null;
|
|
1280
|
-
id: () => string;
|
|
1281
1291
|
label: () => string | null | undefined;
|
|
1282
|
-
title: () => string | null | undefined;
|
|
1283
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1284
|
-
highlight: boolean;
|
|
1285
|
-
} | undefined) => string;
|
|
1286
1292
|
getId: () => string;
|
|
1287
1293
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1288
1294
|
getOwnerDocument: () => Document;
|
|
1289
1295
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1290
1296
|
getTagName: () => string;
|
|
1291
|
-
tagName: () => string;
|
|
1292
1297
|
typeIn: (text: string) => Promise<void>;
|
|
1293
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1294
1298
|
getDOMNode: () => Element;
|
|
1295
1299
|
node: () => Element;
|
|
1296
1300
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1298,9 +1302,8 @@ export declare const AppNavLocator: {
|
|
|
1298
1302
|
} | undefined) => void;
|
|
1299
1303
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1300
1304
|
getTextContent: () => string | null;
|
|
1301
|
-
getParentNode: () =>
|
|
1302
|
-
parent: () =>
|
|
1303
|
-
getBoundingClientRect: () => DOMRect;
|
|
1305
|
+
getParentNode: () => ParentNode | null;
|
|
1306
|
+
parent: () => ParentNode | null;
|
|
1304
1307
|
rect: () => DOMRect;
|
|
1305
1308
|
hasClass: (classname: string) => boolean;
|
|
1306
1309
|
containsFocus: () => boolean;
|
|
@@ -1312,19 +1315,17 @@ export declare const AppNavLocator: {
|
|
|
1312
1315
|
exists: () => boolean;
|
|
1313
1316
|
text: () => string | null;
|
|
1314
1317
|
empty: () => boolean;
|
|
1315
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1316
1318
|
descendants: (selector: string) => Element[];
|
|
1317
|
-
ancestors: (selector: string) =>
|
|
1319
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1318
1320
|
attribute: (qualifiedName: string) => string | null;
|
|
1319
1321
|
style: (property: string) => string;
|
|
1320
1322
|
classNames: () => string[];
|
|
1321
|
-
matches: (selector: string | undefined) => boolean;
|
|
1322
1323
|
checked: () => any;
|
|
1323
1324
|
selected: () => any;
|
|
1324
1325
|
readonly: () => any;
|
|
1325
|
-
|
|
1326
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1326
|
+
parents: (selector: string) => ParentNode[];
|
|
1327
1327
|
} & {
|
|
1328
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1328
1329
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1329
1330
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1330
1331
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1362,7 +1363,6 @@ export declare const AppNavLocator: {
|
|
|
1362
1363
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1363
1364
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1364
1365
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1365
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1366
1366
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1367
1367
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1368
1368
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1412,24 +1412,28 @@ export declare const AppNavLocator: {
|
|
|
1412
1412
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1413
1413
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1414
1414
|
} & {
|
|
1415
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1416
|
+
highlight: boolean;
|
|
1417
|
+
} | undefined) => string;
|
|
1418
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1419
|
+
children: (selector: string) => Element[];
|
|
1420
|
+
title: () => string | null | undefined;
|
|
1421
|
+
id: () => string;
|
|
1422
|
+
tagName: () => string;
|
|
1423
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1424
|
+
getBoundingClientRect: () => DOMRect;
|
|
1425
|
+
matches: (selector: string | undefined) => boolean;
|
|
1415
1426
|
visible: () => boolean;
|
|
1416
1427
|
value: () => string | null;
|
|
1417
1428
|
disabled: () => string | null;
|
|
1418
1429
|
role: () => string | null;
|
|
1419
|
-
id: () => string;
|
|
1420
1430
|
label: () => string | null | undefined;
|
|
1421
|
-
title: () => string | null | undefined;
|
|
1422
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1423
|
-
highlight: boolean;
|
|
1424
|
-
} | undefined) => string;
|
|
1425
1431
|
getId: () => string;
|
|
1426
1432
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1427
1433
|
getOwnerDocument: () => Document;
|
|
1428
1434
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1429
1435
|
getTagName: () => string;
|
|
1430
|
-
tagName: () => string;
|
|
1431
1436
|
typeIn: (text: string) => Promise<void>;
|
|
1432
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1433
1437
|
getDOMNode: () => Element;
|
|
1434
1438
|
node: () => Element;
|
|
1435
1439
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1437,9 +1441,8 @@ export declare const AppNavLocator: {
|
|
|
1437
1441
|
} | undefined) => void;
|
|
1438
1442
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1439
1443
|
getTextContent: () => string | null;
|
|
1440
|
-
getParentNode: () =>
|
|
1441
|
-
parent: () =>
|
|
1442
|
-
getBoundingClientRect: () => DOMRect;
|
|
1444
|
+
getParentNode: () => ParentNode | null;
|
|
1445
|
+
parent: () => ParentNode | null;
|
|
1443
1446
|
rect: () => DOMRect;
|
|
1444
1447
|
hasClass: (classname: string) => boolean;
|
|
1445
1448
|
containsFocus: () => boolean;
|
|
@@ -1451,19 +1454,17 @@ export declare const AppNavLocator: {
|
|
|
1451
1454
|
exists: () => boolean;
|
|
1452
1455
|
text: () => string | null;
|
|
1453
1456
|
empty: () => boolean;
|
|
1454
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1455
1457
|
descendants: (selector: string) => Element[];
|
|
1456
|
-
ancestors: (selector: string) =>
|
|
1458
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1457
1459
|
attribute: (qualifiedName: string) => string | null;
|
|
1458
1460
|
style: (property: string) => string;
|
|
1459
1461
|
classNames: () => string[];
|
|
1460
|
-
matches: (selector: string | undefined) => boolean;
|
|
1461
1462
|
checked: () => any;
|
|
1462
1463
|
selected: () => any;
|
|
1463
1464
|
readonly: () => any;
|
|
1464
|
-
|
|
1465
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1465
|
+
parents: (selector: string) => ParentNode[];
|
|
1466
1466
|
} & {
|
|
1467
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1467
1468
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1468
1469
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1469
1470
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1501,7 +1502,6 @@ export declare const AppNavLocator: {
|
|
|
1501
1502
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1502
1503
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1503
1504
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1504
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1505
1505
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1506
1506
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1507
1507
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1552,24 +1552,28 @@ export declare const AppNavLocator: {
|
|
|
1552
1552
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1553
1553
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1554
1554
|
} & {
|
|
1555
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1556
|
+
highlight: boolean;
|
|
1557
|
+
} | undefined) => string;
|
|
1558
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1559
|
+
children: (selector: string) => Element[];
|
|
1560
|
+
title: () => string | null | undefined;
|
|
1561
|
+
id: () => string;
|
|
1562
|
+
tagName: () => string;
|
|
1563
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1564
|
+
getBoundingClientRect: () => DOMRect;
|
|
1565
|
+
matches: (selector: string | undefined) => boolean;
|
|
1555
1566
|
visible: () => boolean;
|
|
1556
1567
|
value: () => string | null;
|
|
1557
1568
|
disabled: () => string | null;
|
|
1558
1569
|
role: () => string | null;
|
|
1559
|
-
id: () => string;
|
|
1560
1570
|
label: () => string | null | undefined;
|
|
1561
|
-
title: () => string | null | undefined;
|
|
1562
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1563
|
-
highlight: boolean;
|
|
1564
|
-
} | undefined) => string;
|
|
1565
1571
|
getId: () => string;
|
|
1566
1572
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1567
1573
|
getOwnerDocument: () => Document;
|
|
1568
1574
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1569
1575
|
getTagName: () => string;
|
|
1570
|
-
tagName: () => string;
|
|
1571
1576
|
typeIn: (text: string) => Promise<void>;
|
|
1572
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1573
1577
|
getDOMNode: () => Element;
|
|
1574
1578
|
node: () => Element;
|
|
1575
1579
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1577,9 +1581,8 @@ export declare const AppNavLocator: {
|
|
|
1577
1581
|
} | undefined) => void;
|
|
1578
1582
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1579
1583
|
getTextContent: () => string | null;
|
|
1580
|
-
getParentNode: () =>
|
|
1581
|
-
parent: () =>
|
|
1582
|
-
getBoundingClientRect: () => DOMRect;
|
|
1584
|
+
getParentNode: () => ParentNode | null;
|
|
1585
|
+
parent: () => ParentNode | null;
|
|
1583
1586
|
rect: () => DOMRect;
|
|
1584
1587
|
hasClass: (classname: string) => boolean;
|
|
1585
1588
|
containsFocus: () => boolean;
|
|
@@ -1591,19 +1594,17 @@ export declare const AppNavLocator: {
|
|
|
1591
1594
|
exists: () => boolean;
|
|
1592
1595
|
text: () => string | null;
|
|
1593
1596
|
empty: () => boolean;
|
|
1594
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1595
1597
|
descendants: (selector: string) => Element[];
|
|
1596
|
-
ancestors: (selector: string) =>
|
|
1598
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1597
1599
|
attribute: (qualifiedName: string) => string | null;
|
|
1598
1600
|
style: (property: string) => string;
|
|
1599
1601
|
classNames: () => string[];
|
|
1600
|
-
matches: (selector: string | undefined) => boolean;
|
|
1601
1602
|
checked: () => any;
|
|
1602
1603
|
selected: () => any;
|
|
1603
1604
|
readonly: () => any;
|
|
1604
|
-
|
|
1605
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1605
|
+
parents: (selector: string) => ParentNode[];
|
|
1606
1606
|
} & {
|
|
1607
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1607
1608
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1608
1609
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1609
1610
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1641,7 +1642,6 @@ export declare const AppNavLocator: {
|
|
|
1641
1642
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1642
1643
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1643
1644
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1644
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1645
1645
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1646
1646
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1647
1647
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1691,24 +1691,28 @@ export declare const AppNavLocator: {
|
|
|
1691
1691
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1692
1692
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1693
1693
|
} & {
|
|
1694
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1695
|
+
highlight: boolean;
|
|
1696
|
+
} | undefined) => string;
|
|
1697
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1698
|
+
children: (selector: string) => Element[];
|
|
1699
|
+
title: () => string | null | undefined;
|
|
1700
|
+
id: () => string;
|
|
1701
|
+
tagName: () => string;
|
|
1702
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1703
|
+
getBoundingClientRect: () => DOMRect;
|
|
1704
|
+
matches: (selector: string | undefined) => boolean;
|
|
1694
1705
|
visible: () => boolean;
|
|
1695
1706
|
value: () => string | null;
|
|
1696
1707
|
disabled: () => string | null;
|
|
1697
1708
|
role: () => string | null;
|
|
1698
|
-
id: () => string;
|
|
1699
1709
|
label: () => string | null | undefined;
|
|
1700
|
-
title: () => string | null | undefined;
|
|
1701
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1702
|
-
highlight: boolean;
|
|
1703
|
-
} | undefined) => string;
|
|
1704
1710
|
getId: () => string;
|
|
1705
1711
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1706
1712
|
getOwnerDocument: () => Document;
|
|
1707
1713
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1708
1714
|
getTagName: () => string;
|
|
1709
|
-
tagName: () => string;
|
|
1710
1715
|
typeIn: (text: string) => Promise<void>;
|
|
1711
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1712
1716
|
getDOMNode: () => Element;
|
|
1713
1717
|
node: () => Element;
|
|
1714
1718
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1716,9 +1720,8 @@ export declare const AppNavLocator: {
|
|
|
1716
1720
|
} | undefined) => void;
|
|
1717
1721
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1718
1722
|
getTextContent: () => string | null;
|
|
1719
|
-
getParentNode: () =>
|
|
1720
|
-
parent: () =>
|
|
1721
|
-
getBoundingClientRect: () => DOMRect;
|
|
1723
|
+
getParentNode: () => ParentNode | null;
|
|
1724
|
+
parent: () => ParentNode | null;
|
|
1722
1725
|
rect: () => DOMRect;
|
|
1723
1726
|
hasClass: (classname: string) => boolean;
|
|
1724
1727
|
containsFocus: () => boolean;
|
|
@@ -1730,19 +1733,17 @@ export declare const AppNavLocator: {
|
|
|
1730
1733
|
exists: () => boolean;
|
|
1731
1734
|
text: () => string | null;
|
|
1732
1735
|
empty: () => boolean;
|
|
1733
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1734
1736
|
descendants: (selector: string) => Element[];
|
|
1735
|
-
ancestors: (selector: string) =>
|
|
1737
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1736
1738
|
attribute: (qualifiedName: string) => string | null;
|
|
1737
1739
|
style: (property: string) => string;
|
|
1738
1740
|
classNames: () => string[];
|
|
1739
|
-
matches: (selector: string | undefined) => boolean;
|
|
1740
1741
|
checked: () => any;
|
|
1741
1742
|
selected: () => any;
|
|
1742
1743
|
readonly: () => any;
|
|
1743
|
-
|
|
1744
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1744
|
+
parents: (selector: string) => ParentNode[];
|
|
1745
1745
|
} & {
|
|
1746
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1746
1747
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1747
1748
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1748
1749
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1780,7 +1781,6 @@ export declare const AppNavLocator: {
|
|
|
1780
1781
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1781
1782
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1782
1783
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1783
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1784
1784
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1785
1785
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1786
1786
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1830,24 +1830,28 @@ export declare const AppNavLocator: {
|
|
|
1830
1830
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1831
1831
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1832
1832
|
} & {
|
|
1833
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1834
|
+
highlight: boolean;
|
|
1835
|
+
} | undefined) => string;
|
|
1836
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1837
|
+
children: (selector: string) => Element[];
|
|
1838
|
+
title: () => string | null | undefined;
|
|
1839
|
+
id: () => string;
|
|
1840
|
+
tagName: () => string;
|
|
1841
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1842
|
+
getBoundingClientRect: () => DOMRect;
|
|
1843
|
+
matches: (selector: string | undefined) => boolean;
|
|
1833
1844
|
visible: () => boolean;
|
|
1834
1845
|
value: () => string | null;
|
|
1835
1846
|
disabled: () => string | null;
|
|
1836
1847
|
role: () => string | null;
|
|
1837
|
-
id: () => string;
|
|
1838
1848
|
label: () => string | null | undefined;
|
|
1839
|
-
title: () => string | null | undefined;
|
|
1840
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1841
|
-
highlight: boolean;
|
|
1842
|
-
} | undefined) => string;
|
|
1843
1849
|
getId: () => string;
|
|
1844
1850
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1845
1851
|
getOwnerDocument: () => Document;
|
|
1846
1852
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1847
1853
|
getTagName: () => string;
|
|
1848
|
-
tagName: () => string;
|
|
1849
1854
|
typeIn: (text: string) => Promise<void>;
|
|
1850
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1851
1855
|
getDOMNode: () => Element;
|
|
1852
1856
|
node: () => Element;
|
|
1853
1857
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1855,9 +1859,8 @@ export declare const AppNavLocator: {
|
|
|
1855
1859
|
} | undefined) => void;
|
|
1856
1860
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1857
1861
|
getTextContent: () => string | null;
|
|
1858
|
-
getParentNode: () =>
|
|
1859
|
-
parent: () =>
|
|
1860
|
-
getBoundingClientRect: () => DOMRect;
|
|
1862
|
+
getParentNode: () => ParentNode | null;
|
|
1863
|
+
parent: () => ParentNode | null;
|
|
1861
1864
|
rect: () => DOMRect;
|
|
1862
1865
|
hasClass: (classname: string) => boolean;
|
|
1863
1866
|
containsFocus: () => boolean;
|
|
@@ -1869,19 +1872,17 @@ export declare const AppNavLocator: {
|
|
|
1869
1872
|
exists: () => boolean;
|
|
1870
1873
|
text: () => string | null;
|
|
1871
1874
|
empty: () => boolean;
|
|
1872
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1873
1875
|
descendants: (selector: string) => Element[];
|
|
1874
|
-
ancestors: (selector: string) =>
|
|
1876
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1875
1877
|
attribute: (qualifiedName: string) => string | null;
|
|
1876
1878
|
style: (property: string) => string;
|
|
1877
1879
|
classNames: () => string[];
|
|
1878
|
-
matches: (selector: string | undefined) => boolean;
|
|
1879
1880
|
checked: () => any;
|
|
1880
1881
|
selected: () => any;
|
|
1881
1882
|
readonly: () => any;
|
|
1882
|
-
|
|
1883
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1883
|
+
parents: (selector: string) => ParentNode[];
|
|
1884
1884
|
} & {
|
|
1885
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1885
1886
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1886
1887
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1887
1888
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1919,7 +1920,6 @@ export declare const AppNavLocator: {
|
|
|
1919
1920
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1920
1921
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1921
1922
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1922
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1923
1923
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1924
1924
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1925
1925
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|