@instructure/ui-pagination 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 +7 -0
- package/es/Pagination/PaginationArrowButton/index.js +36 -4
- package/es/Pagination/PaginationArrowButton/props.js +6 -3
- package/es/Pagination/PaginationButton/props.js +9 -2
- package/es/Pagination/PaginationLocator.js +4 -0
- package/es/Pagination/PaginationPageInput/PaginationPageInputLocator.js +35 -0
- package/es/Pagination/PaginationPageInput/index.js +208 -0
- package/es/Pagination/PaginationPageInput/props.js +35 -0
- package/es/Pagination/PaginationPageInput/styles.js +55 -0
- package/es/Pagination/PaginationPageInput/theme.js +40 -0
- package/es/Pagination/index.js +178 -52
- package/es/Pagination/props.js +32 -2
- package/lib/Pagination/PaginationArrowButton/index.js +39 -3
- package/lib/Pagination/PaginationArrowButton/props.js +6 -3
- package/lib/Pagination/PaginationButton/props.js +9 -2
- package/lib/Pagination/PaginationLocator.js +5 -0
- package/lib/Pagination/PaginationPageInput/PaginationPageInputLocator.js +46 -0
- package/lib/Pagination/PaginationPageInput/index.js +202 -0
- package/lib/Pagination/PaginationPageInput/props.js +46 -0
- package/lib/Pagination/PaginationPageInput/styles.js +63 -0
- package/lib/Pagination/PaginationPageInput/theme.js +48 -0
- package/lib/Pagination/index.js +179 -52
- package/lib/Pagination/props.js +32 -2
- package/package.json +23 -22
- package/src/Pagination/PaginationArrowButton/index.tsx +32 -4
- package/src/Pagination/PaginationArrowButton/props.ts +22 -6
- package/src/Pagination/PaginationButton/props.ts +18 -2
- package/src/Pagination/PaginationLocator.ts +5 -1
- package/src/Pagination/PaginationPageInput/PaginationPageInputLocator.ts +42 -0
- package/src/Pagination/PaginationPageInput/index.tsx +242 -0
- package/src/Pagination/PaginationPageInput/props.ts +112 -0
- package/src/Pagination/PaginationPageInput/styles.ts +60 -0
- package/src/Pagination/PaginationPageInput/theme.ts +46 -0
- package/src/Pagination/README.md +116 -0
- package/src/Pagination/index.tsx +213 -80
- package/src/Pagination/props.ts +53 -4
- package/tsconfig.build.json +26 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/Pagination/PaginationArrowButton/PaginationArrowButtonLocator.d.ts +57 -56
- package/types/Pagination/PaginationArrowButton/PaginationArrowButtonLocator.d.ts.map +1 -1
- package/types/Pagination/PaginationArrowButton/index.d.ts +9 -4
- package/types/Pagination/PaginationArrowButton/index.d.ts.map +1 -1
- package/types/Pagination/PaginationArrowButton/props.d.ts +5 -3
- package/types/Pagination/PaginationArrowButton/props.d.ts.map +1 -1
- package/types/Pagination/PaginationButton/index.d.ts +2 -0
- package/types/Pagination/PaginationButton/index.d.ts.map +1 -1
- package/types/Pagination/PaginationButton/props.d.ts +1 -0
- package/types/Pagination/PaginationButton/props.d.ts.map +1 -1
- package/types/Pagination/PaginationLocator.d.ts +944 -234
- package/types/Pagination/PaginationLocator.d.ts.map +1 -1
- package/types/Pagination/PaginationPageInput/PaginationPageInputLocator.d.ts +581 -0
- package/types/Pagination/PaginationPageInput/PaginationPageInputLocator.d.ts.map +1 -0
- package/types/Pagination/PaginationPageInput/index.d.ts +63 -0
- package/types/Pagination/PaginationPageInput/index.d.ts.map +1 -0
- package/types/Pagination/PaginationPageInput/props.d.ts +46 -0
- package/types/Pagination/PaginationPageInput/props.d.ts.map +1 -0
- package/types/Pagination/PaginationPageInput/styles.d.ts +15 -0
- package/types/Pagination/PaginationPageInput/styles.d.ts.map +1 -0
- package/types/Pagination/PaginationPageInput/theme.d.ts +10 -0
- package/types/Pagination/PaginationPageInput/theme.d.ts.map +1 -0
- package/types/Pagination/index.d.ts +50 -14
- package/types/Pagination/index.d.ts.map +1 -1
- package/types/Pagination/props.d.ts +13 -3
- package/types/Pagination/props.d.ts.map +1 -1
- package/LICENSE.md +0 -27
|
@@ -16,25 +16,15 @@ export declare const PaginationLocator: {
|
|
|
16
16
|
toString: (maxLength?: number | undefined, options?: {
|
|
17
17
|
highlight: boolean;
|
|
18
18
|
} | undefined) => string;
|
|
19
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
20
|
-
children: (selector: string) => Element[];
|
|
21
|
-
title: () => string | null | undefined;
|
|
22
|
-
id: () => string;
|
|
23
|
-
tagName: () => string;
|
|
24
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
25
|
-
getBoundingClientRect: () => DOMRect;
|
|
26
|
-
matches: (selector: string | undefined) => boolean;
|
|
27
19
|
visible: () => boolean;
|
|
28
|
-
value: () => string | null;
|
|
29
|
-
disabled: () => string | null;
|
|
30
|
-
role: () => string | null;
|
|
31
|
-
label: () => string | null | undefined;
|
|
32
20
|
getId: () => string;
|
|
33
21
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
34
22
|
getOwnerDocument: () => Document;
|
|
35
23
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
36
24
|
getTagName: () => string;
|
|
25
|
+
tagName: () => string;
|
|
37
26
|
typeIn: (text: string) => Promise<void>;
|
|
27
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
38
28
|
getDOMNode: () => Element;
|
|
39
29
|
node: () => Element;
|
|
40
30
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -44,6 +34,7 @@ export declare const PaginationLocator: {
|
|
|
44
34
|
getTextContent: () => string | null;
|
|
45
35
|
getParentNode: () => ParentNode | null;
|
|
46
36
|
parent: () => ParentNode | null;
|
|
37
|
+
getBoundingClientRect: () => DOMRect;
|
|
47
38
|
rect: () => DOMRect;
|
|
48
39
|
hasClass: (classname: string) => boolean;
|
|
49
40
|
containsFocus: () => boolean;
|
|
@@ -55,17 +46,25 @@ export declare const PaginationLocator: {
|
|
|
55
46
|
exists: () => boolean;
|
|
56
47
|
text: () => string | null;
|
|
57
48
|
empty: () => boolean;
|
|
49
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
58
50
|
descendants: (selector: string) => Element[];
|
|
59
51
|
ancestors: (selector: string) => ParentNode[];
|
|
60
52
|
attribute: (qualifiedName: string) => string | null;
|
|
61
53
|
style: (property: string) => string;
|
|
62
54
|
classNames: () => string[];
|
|
55
|
+
id: () => string;
|
|
56
|
+
matches: (selector: string | undefined) => boolean;
|
|
63
57
|
checked: () => any;
|
|
64
58
|
selected: () => any;
|
|
59
|
+
disabled: () => string | null;
|
|
65
60
|
readonly: () => any;
|
|
61
|
+
role: () => string | null;
|
|
62
|
+
value: () => string | null;
|
|
63
|
+
label: () => string | null | undefined;
|
|
64
|
+
title: () => string | null | undefined;
|
|
65
|
+
children: (selector: string) => Element[];
|
|
66
66
|
parents: (selector: string) => ParentNode[];
|
|
67
67
|
} & {
|
|
68
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
69
68
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
70
69
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
71
70
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -103,6 +102,7 @@ export declare const PaginationLocator: {
|
|
|
103
102
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
104
103
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
104
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
106
106
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
107
107
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
108
108
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -155,25 +155,15 @@ export declare const PaginationLocator: {
|
|
|
155
155
|
toString: (maxLength?: number | undefined, options?: {
|
|
156
156
|
highlight: boolean;
|
|
157
157
|
} | undefined) => string;
|
|
158
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
159
|
-
children: (selector: string) => Element[];
|
|
160
|
-
title: () => string | null | undefined;
|
|
161
|
-
id: () => string;
|
|
162
|
-
tagName: () => string;
|
|
163
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
164
|
-
getBoundingClientRect: () => DOMRect;
|
|
165
|
-
matches: (selector: string | undefined) => boolean;
|
|
166
158
|
visible: () => boolean;
|
|
167
|
-
value: () => string | null;
|
|
168
|
-
disabled: () => string | null;
|
|
169
|
-
role: () => string | null;
|
|
170
|
-
label: () => string | null | undefined;
|
|
171
159
|
getId: () => string;
|
|
172
160
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
173
161
|
getOwnerDocument: () => Document;
|
|
174
162
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
175
163
|
getTagName: () => string;
|
|
164
|
+
tagName: () => string;
|
|
176
165
|
typeIn: (text: string) => Promise<void>;
|
|
166
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
177
167
|
getDOMNode: () => Element;
|
|
178
168
|
node: () => Element;
|
|
179
169
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -183,6 +173,7 @@ export declare const PaginationLocator: {
|
|
|
183
173
|
getTextContent: () => string | null;
|
|
184
174
|
getParentNode: () => ParentNode | null;
|
|
185
175
|
parent: () => ParentNode | null;
|
|
176
|
+
getBoundingClientRect: () => DOMRect;
|
|
186
177
|
rect: () => DOMRect;
|
|
187
178
|
hasClass: (classname: string) => boolean;
|
|
188
179
|
containsFocus: () => boolean;
|
|
@@ -194,17 +185,25 @@ export declare const PaginationLocator: {
|
|
|
194
185
|
exists: () => boolean;
|
|
195
186
|
text: () => string | null;
|
|
196
187
|
empty: () => boolean;
|
|
188
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
197
189
|
descendants: (selector: string) => Element[];
|
|
198
190
|
ancestors: (selector: string) => ParentNode[];
|
|
199
191
|
attribute: (qualifiedName: string) => string | null;
|
|
200
192
|
style: (property: string) => string;
|
|
201
193
|
classNames: () => string[];
|
|
194
|
+
id: () => string;
|
|
195
|
+
matches: (selector: string | undefined) => boolean;
|
|
202
196
|
checked: () => any;
|
|
203
197
|
selected: () => any;
|
|
198
|
+
disabled: () => string | null;
|
|
204
199
|
readonly: () => any;
|
|
200
|
+
role: () => string | null;
|
|
201
|
+
value: () => string | null;
|
|
202
|
+
label: () => string | null | undefined;
|
|
203
|
+
title: () => string | null | undefined;
|
|
204
|
+
children: (selector: string) => Element[];
|
|
205
205
|
parents: (selector: string) => ParentNode[];
|
|
206
206
|
} & {
|
|
207
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
208
207
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
209
208
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
210
209
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -242,6 +241,7 @@ export declare const PaginationLocator: {
|
|
|
242
241
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
243
242
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
243
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
245
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
246
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
247
247
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -294,25 +294,157 @@ export declare const PaginationLocator: {
|
|
|
294
294
|
toString: (maxLength?: number | undefined, options?: {
|
|
295
295
|
highlight: boolean;
|
|
296
296
|
} | undefined) => string;
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
297
|
+
visible: () => boolean;
|
|
298
|
+
getId: () => string;
|
|
299
|
+
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
300
|
+
getOwnerDocument: () => Document;
|
|
301
|
+
getComputedStyle: () => CSSStyleDeclaration;
|
|
302
|
+
getTagName: () => string;
|
|
301
303
|
tagName: () => string;
|
|
304
|
+
typeIn: (text: string) => Promise<void>;
|
|
302
305
|
getAttribute: (qualifiedName: string) => string | null;
|
|
306
|
+
getDOMNode: () => Element;
|
|
307
|
+
node: () => Element;
|
|
308
|
+
debug: (maxLength?: number | undefined, options?: {
|
|
309
|
+
highlight: boolean;
|
|
310
|
+
} | undefined) => void;
|
|
311
|
+
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
312
|
+
getTextContent: () => string | null;
|
|
313
|
+
getParentNode: () => ParentNode | null;
|
|
314
|
+
parent: () => ParentNode | null;
|
|
303
315
|
getBoundingClientRect: () => DOMRect;
|
|
316
|
+
rect: () => DOMRect;
|
|
317
|
+
hasClass: (classname: string) => boolean;
|
|
318
|
+
containsFocus: () => boolean;
|
|
319
|
+
focused: () => boolean;
|
|
320
|
+
focusable: () => boolean;
|
|
321
|
+
tabbable: () => boolean;
|
|
322
|
+
clickable: () => boolean;
|
|
323
|
+
onscreen: () => boolean;
|
|
324
|
+
exists: () => boolean;
|
|
325
|
+
text: () => string | null;
|
|
326
|
+
empty: () => boolean;
|
|
327
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
328
|
+
descendants: (selector: string) => Element[];
|
|
329
|
+
ancestors: (selector: string) => ParentNode[];
|
|
330
|
+
attribute: (qualifiedName: string) => string | null;
|
|
331
|
+
style: (property: string) => string;
|
|
332
|
+
classNames: () => string[];
|
|
333
|
+
id: () => string;
|
|
304
334
|
matches: (selector: string | undefined) => boolean;
|
|
305
|
-
|
|
306
|
-
|
|
335
|
+
checked: () => any;
|
|
336
|
+
selected: () => any;
|
|
307
337
|
disabled: () => string | null;
|
|
338
|
+
readonly: () => any;
|
|
308
339
|
role: () => string | null;
|
|
340
|
+
value: () => string | null;
|
|
309
341
|
label: () => string | null | undefined;
|
|
342
|
+
title: () => string | null | undefined;
|
|
343
|
+
children: (selector: string) => Element[];
|
|
344
|
+
parents: (selector: string) => ParentNode[];
|
|
345
|
+
} & {
|
|
346
|
+
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
347
|
+
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
348
|
+
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
349
|
+
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
350
|
+
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
351
|
+
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
352
|
+
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
353
|
+
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
354
|
+
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
355
|
+
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
356
|
+
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
357
|
+
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
358
|
+
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
359
|
+
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
360
|
+
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
361
|
+
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
362
|
+
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
363
|
+
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
364
|
+
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
365
|
+
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
366
|
+
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
367
|
+
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
368
|
+
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
369
|
+
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
370
|
+
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
371
|
+
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
372
|
+
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
373
|
+
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
374
|
+
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
375
|
+
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
376
|
+
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
377
|
+
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
378
|
+
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
379
|
+
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
380
|
+
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
381
|
+
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
382
|
+
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
383
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
384
|
+
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
385
|
+
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
386
|
+
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
387
|
+
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
388
|
+
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
|
+
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
|
+
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
391
|
+
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
392
|
+
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
393
|
+
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
394
|
+
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
395
|
+
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
396
|
+
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
397
|
+
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
398
|
+
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
399
|
+
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
400
|
+
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
401
|
+
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
402
|
+
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
403
|
+
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
404
|
+
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
405
|
+
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
406
|
+
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
407
|
+
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
408
|
+
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
409
|
+
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
410
|
+
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
411
|
+
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
412
|
+
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
413
|
+
} & {
|
|
414
|
+
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<void | Event>;
|
|
415
|
+
} & {
|
|
416
|
+
keyDown: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
417
|
+
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
418
|
+
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
419
|
+
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
420
|
+
findTooltipContent: (...args: any[]) => any;
|
|
421
|
+
click: (element: any, ...args: any[]) => Promise<Event>;
|
|
422
|
+
}>>;
|
|
423
|
+
findPageInput: (...args: any[]) => Promise<{
|
|
424
|
+
findWithLabel: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithLabel;
|
|
425
|
+
findWithText: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithText;
|
|
426
|
+
findWithTitle: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithTitle;
|
|
427
|
+
findAllByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllByQuery;
|
|
428
|
+
findByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findByQuery;
|
|
429
|
+
findAll: typeof import("@instructure/ui-test-queries/src/utils/queries").findAll;
|
|
430
|
+
find: typeof import("@instructure/ui-test-queries/src/utils/queries").find;
|
|
431
|
+
findAllFrames: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllFrames;
|
|
432
|
+
findFrame: typeof import("@instructure/ui-test-queries/src/utils/queries").findFrame;
|
|
433
|
+
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
434
|
+
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
435
|
+
} & {
|
|
436
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
437
|
+
highlight: boolean;
|
|
438
|
+
} | undefined) => string;
|
|
439
|
+
visible: () => boolean;
|
|
310
440
|
getId: () => string;
|
|
311
441
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
312
442
|
getOwnerDocument: () => Document;
|
|
313
443
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
314
444
|
getTagName: () => string;
|
|
445
|
+
tagName: () => string;
|
|
315
446
|
typeIn: (text: string) => Promise<void>;
|
|
447
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
316
448
|
getDOMNode: () => Element;
|
|
317
449
|
node: () => Element;
|
|
318
450
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -322,6 +454,7 @@ export declare const PaginationLocator: {
|
|
|
322
454
|
getTextContent: () => string | null;
|
|
323
455
|
getParentNode: () => ParentNode | null;
|
|
324
456
|
parent: () => ParentNode | null;
|
|
457
|
+
getBoundingClientRect: () => DOMRect;
|
|
325
458
|
rect: () => DOMRect;
|
|
326
459
|
hasClass: (classname: string) => boolean;
|
|
327
460
|
containsFocus: () => boolean;
|
|
@@ -333,17 +466,25 @@ export declare const PaginationLocator: {
|
|
|
333
466
|
exists: () => boolean;
|
|
334
467
|
text: () => string | null;
|
|
335
468
|
empty: () => boolean;
|
|
469
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
336
470
|
descendants: (selector: string) => Element[];
|
|
337
471
|
ancestors: (selector: string) => ParentNode[];
|
|
338
472
|
attribute: (qualifiedName: string) => string | null;
|
|
339
473
|
style: (property: string) => string;
|
|
340
474
|
classNames: () => string[];
|
|
475
|
+
id: () => string;
|
|
476
|
+
matches: (selector: string | undefined) => boolean;
|
|
341
477
|
checked: () => any;
|
|
342
478
|
selected: () => any;
|
|
479
|
+
disabled: () => string | null;
|
|
343
480
|
readonly: () => any;
|
|
481
|
+
role: () => string | null;
|
|
482
|
+
value: () => string | null;
|
|
483
|
+
label: () => string | null | undefined;
|
|
484
|
+
title: () => string | null | undefined;
|
|
485
|
+
children: (selector: string) => Element[];
|
|
344
486
|
parents: (selector: string) => ParentNode[];
|
|
345
487
|
} & {
|
|
346
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
347
488
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
348
489
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
349
490
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -381,6 +522,7 @@ export declare const PaginationLocator: {
|
|
|
381
522
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
382
523
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
383
524
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
525
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
384
526
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
385
527
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
386
528
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -417,8 +559,8 @@ export declare const PaginationLocator: {
|
|
|
417
559
|
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
418
560
|
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
419
561
|
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
420
|
-
|
|
421
|
-
|
|
562
|
+
findInput: (...args: any[]) => any;
|
|
563
|
+
findNumberInputArrows: (...args: any[]) => any;
|
|
422
564
|
}>>;
|
|
423
565
|
};
|
|
424
566
|
selector: string;
|
|
@@ -443,25 +585,15 @@ export declare const PaginationLocator: {
|
|
|
443
585
|
toString: (maxLength?: number | undefined, options?: {
|
|
444
586
|
highlight: boolean;
|
|
445
587
|
} | undefined) => string;
|
|
446
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
447
|
-
children: (selector: string) => Element[];
|
|
448
|
-
title: () => string | null | undefined;
|
|
449
|
-
id: () => string;
|
|
450
|
-
tagName: () => string;
|
|
451
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
452
|
-
getBoundingClientRect: () => DOMRect;
|
|
453
|
-
matches: (selector: string | undefined) => boolean;
|
|
454
588
|
visible: () => boolean;
|
|
455
|
-
value: () => string | null;
|
|
456
|
-
disabled: () => string | null;
|
|
457
|
-
role: () => string | null;
|
|
458
|
-
label: () => string | null | undefined;
|
|
459
589
|
getId: () => string;
|
|
460
590
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
461
591
|
getOwnerDocument: () => Document;
|
|
462
592
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
463
593
|
getTagName: () => string;
|
|
594
|
+
tagName: () => string;
|
|
464
595
|
typeIn: (text: string) => Promise<void>;
|
|
596
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
465
597
|
getDOMNode: () => Element;
|
|
466
598
|
node: () => Element;
|
|
467
599
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -471,6 +603,7 @@ export declare const PaginationLocator: {
|
|
|
471
603
|
getTextContent: () => string | null;
|
|
472
604
|
getParentNode: () => ParentNode | null;
|
|
473
605
|
parent: () => ParentNode | null;
|
|
606
|
+
getBoundingClientRect: () => DOMRect;
|
|
474
607
|
rect: () => DOMRect;
|
|
475
608
|
hasClass: (classname: string) => boolean;
|
|
476
609
|
containsFocus: () => boolean;
|
|
@@ -482,17 +615,25 @@ export declare const PaginationLocator: {
|
|
|
482
615
|
exists: () => boolean;
|
|
483
616
|
text: () => string | null;
|
|
484
617
|
empty: () => boolean;
|
|
618
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
485
619
|
descendants: (selector: string) => Element[];
|
|
486
620
|
ancestors: (selector: string) => ParentNode[];
|
|
487
621
|
attribute: (qualifiedName: string) => string | null;
|
|
488
622
|
style: (property: string) => string;
|
|
489
623
|
classNames: () => string[];
|
|
624
|
+
id: () => string;
|
|
625
|
+
matches: (selector: string | undefined) => boolean;
|
|
490
626
|
checked: () => any;
|
|
491
627
|
selected: () => any;
|
|
628
|
+
disabled: () => string | null;
|
|
492
629
|
readonly: () => any;
|
|
630
|
+
role: () => string | null;
|
|
631
|
+
value: () => string | null;
|
|
632
|
+
label: () => string | null | undefined;
|
|
633
|
+
title: () => string | null | undefined;
|
|
634
|
+
children: (selector: string) => Element[];
|
|
493
635
|
parents: (selector: string) => ParentNode[];
|
|
494
636
|
} & {
|
|
495
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
496
637
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
497
638
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
498
639
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -530,6 +671,7 @@ export declare const PaginationLocator: {
|
|
|
530
671
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
672
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
673
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
533
675
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
534
676
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
535
677
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -582,25 +724,15 @@ export declare const PaginationLocator: {
|
|
|
582
724
|
toString: (maxLength?: number | undefined, options?: {
|
|
583
725
|
highlight: boolean;
|
|
584
726
|
} | undefined) => string;
|
|
585
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
586
|
-
children: (selector: string) => Element[];
|
|
587
|
-
title: () => string | null | undefined;
|
|
588
|
-
id: () => string;
|
|
589
|
-
tagName: () => string;
|
|
590
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
591
|
-
getBoundingClientRect: () => DOMRect;
|
|
592
|
-
matches: (selector: string | undefined) => boolean;
|
|
593
727
|
visible: () => boolean;
|
|
594
|
-
value: () => string | null;
|
|
595
|
-
disabled: () => string | null;
|
|
596
|
-
role: () => string | null;
|
|
597
|
-
label: () => string | null | undefined;
|
|
598
728
|
getId: () => string;
|
|
599
729
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
600
730
|
getOwnerDocument: () => Document;
|
|
601
731
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
602
732
|
getTagName: () => string;
|
|
733
|
+
tagName: () => string;
|
|
603
734
|
typeIn: (text: string) => Promise<void>;
|
|
735
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
604
736
|
getDOMNode: () => Element;
|
|
605
737
|
node: () => Element;
|
|
606
738
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -610,6 +742,7 @@ export declare const PaginationLocator: {
|
|
|
610
742
|
getTextContent: () => string | null;
|
|
611
743
|
getParentNode: () => ParentNode | null;
|
|
612
744
|
parent: () => ParentNode | null;
|
|
745
|
+
getBoundingClientRect: () => DOMRect;
|
|
613
746
|
rect: () => DOMRect;
|
|
614
747
|
hasClass: (classname: string) => boolean;
|
|
615
748
|
containsFocus: () => boolean;
|
|
@@ -621,17 +754,25 @@ export declare const PaginationLocator: {
|
|
|
621
754
|
exists: () => boolean;
|
|
622
755
|
text: () => string | null;
|
|
623
756
|
empty: () => boolean;
|
|
757
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
624
758
|
descendants: (selector: string) => Element[];
|
|
625
759
|
ancestors: (selector: string) => ParentNode[];
|
|
626
760
|
attribute: (qualifiedName: string) => string | null;
|
|
627
761
|
style: (property: string) => string;
|
|
628
762
|
classNames: () => string[];
|
|
763
|
+
id: () => string;
|
|
764
|
+
matches: (selector: string | undefined) => boolean;
|
|
629
765
|
checked: () => any;
|
|
630
766
|
selected: () => any;
|
|
767
|
+
disabled: () => string | null;
|
|
631
768
|
readonly: () => any;
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
769
|
+
role: () => string | null;
|
|
770
|
+
value: () => string | null;
|
|
771
|
+
label: () => string | null | undefined;
|
|
772
|
+
title: () => string | null | undefined;
|
|
773
|
+
children: (selector: string) => Element[];
|
|
774
|
+
parents: (selector: string) => ParentNode[];
|
|
775
|
+
} & {
|
|
635
776
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
636
777
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
637
778
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -669,6 +810,7 @@ export declare const PaginationLocator: {
|
|
|
669
810
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
670
811
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
671
812
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
813
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
672
814
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
673
815
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
816
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -721,25 +863,15 @@ export declare const PaginationLocator: {
|
|
|
721
863
|
toString: (maxLength?: number | undefined, options?: {
|
|
722
864
|
highlight: boolean;
|
|
723
865
|
} | undefined) => string;
|
|
724
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
725
|
-
children: (selector: string) => Element[];
|
|
726
|
-
title: () => string | null | undefined;
|
|
727
|
-
id: () => string;
|
|
728
|
-
tagName: () => string;
|
|
729
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
730
|
-
getBoundingClientRect: () => DOMRect;
|
|
731
|
-
matches: (selector: string | undefined) => boolean;
|
|
732
866
|
visible: () => boolean;
|
|
733
|
-
value: () => string | null;
|
|
734
|
-
disabled: () => string | null;
|
|
735
|
-
role: () => string | null;
|
|
736
|
-
label: () => string | null | undefined;
|
|
737
867
|
getId: () => string;
|
|
738
868
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
739
869
|
getOwnerDocument: () => Document;
|
|
740
870
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
741
871
|
getTagName: () => string;
|
|
872
|
+
tagName: () => string;
|
|
742
873
|
typeIn: (text: string) => Promise<void>;
|
|
874
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
743
875
|
getDOMNode: () => Element;
|
|
744
876
|
node: () => Element;
|
|
745
877
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -749,6 +881,7 @@ export declare const PaginationLocator: {
|
|
|
749
881
|
getTextContent: () => string | null;
|
|
750
882
|
getParentNode: () => ParentNode | null;
|
|
751
883
|
parent: () => ParentNode | null;
|
|
884
|
+
getBoundingClientRect: () => DOMRect;
|
|
752
885
|
rect: () => DOMRect;
|
|
753
886
|
hasClass: (classname: string) => boolean;
|
|
754
887
|
containsFocus: () => boolean;
|
|
@@ -760,17 +893,25 @@ export declare const PaginationLocator: {
|
|
|
760
893
|
exists: () => boolean;
|
|
761
894
|
text: () => string | null;
|
|
762
895
|
empty: () => boolean;
|
|
896
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
763
897
|
descendants: (selector: string) => Element[];
|
|
764
898
|
ancestors: (selector: string) => ParentNode[];
|
|
765
899
|
attribute: (qualifiedName: string) => string | null;
|
|
766
900
|
style: (property: string) => string;
|
|
767
901
|
classNames: () => string[];
|
|
902
|
+
id: () => string;
|
|
903
|
+
matches: (selector: string | undefined) => boolean;
|
|
768
904
|
checked: () => any;
|
|
769
905
|
selected: () => any;
|
|
906
|
+
disabled: () => string | null;
|
|
770
907
|
readonly: () => any;
|
|
908
|
+
role: () => string | null;
|
|
909
|
+
value: () => string | null;
|
|
910
|
+
label: () => string | null | undefined;
|
|
911
|
+
title: () => string | null | undefined;
|
|
912
|
+
children: (selector: string) => Element[];
|
|
771
913
|
parents: (selector: string) => ParentNode[];
|
|
772
914
|
} & {
|
|
773
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
774
915
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
775
916
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
776
917
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -808,6 +949,7 @@ export declare const PaginationLocator: {
|
|
|
808
949
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
809
950
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
810
951
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
952
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
811
953
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
812
954
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
813
955
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -860,25 +1002,157 @@ export declare const PaginationLocator: {
|
|
|
860
1002
|
toString: (maxLength?: number | undefined, options?: {
|
|
861
1003
|
highlight: boolean;
|
|
862
1004
|
} | undefined) => string;
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
1005
|
+
visible: () => boolean;
|
|
1006
|
+
getId: () => string;
|
|
1007
|
+
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1008
|
+
getOwnerDocument: () => Document;
|
|
1009
|
+
getComputedStyle: () => CSSStyleDeclaration;
|
|
1010
|
+
getTagName: () => string;
|
|
867
1011
|
tagName: () => string;
|
|
1012
|
+
typeIn: (text: string) => Promise<void>;
|
|
868
1013
|
getAttribute: (qualifiedName: string) => string | null;
|
|
1014
|
+
getDOMNode: () => Element;
|
|
1015
|
+
node: () => Element;
|
|
1016
|
+
debug: (maxLength?: number | undefined, options?: {
|
|
1017
|
+
highlight: boolean;
|
|
1018
|
+
} | undefined) => void;
|
|
1019
|
+
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1020
|
+
getTextContent: () => string | null;
|
|
1021
|
+
getParentNode: () => ParentNode | null;
|
|
1022
|
+
parent: () => ParentNode | null;
|
|
869
1023
|
getBoundingClientRect: () => DOMRect;
|
|
1024
|
+
rect: () => DOMRect;
|
|
1025
|
+
hasClass: (classname: string) => boolean;
|
|
1026
|
+
containsFocus: () => boolean;
|
|
1027
|
+
focused: () => boolean;
|
|
1028
|
+
focusable: () => boolean;
|
|
1029
|
+
tabbable: () => boolean;
|
|
1030
|
+
clickable: () => boolean;
|
|
1031
|
+
onscreen: () => boolean;
|
|
1032
|
+
exists: () => boolean;
|
|
1033
|
+
text: () => string | null;
|
|
1034
|
+
empty: () => boolean;
|
|
1035
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1036
|
+
descendants: (selector: string) => Element[];
|
|
1037
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1038
|
+
attribute: (qualifiedName: string) => string | null;
|
|
1039
|
+
style: (property: string) => string;
|
|
1040
|
+
classNames: () => string[];
|
|
1041
|
+
id: () => string;
|
|
870
1042
|
matches: (selector: string | undefined) => boolean;
|
|
871
|
-
|
|
872
|
-
|
|
1043
|
+
checked: () => any;
|
|
1044
|
+
selected: () => any;
|
|
873
1045
|
disabled: () => string | null;
|
|
1046
|
+
readonly: () => any;
|
|
874
1047
|
role: () => string | null;
|
|
1048
|
+
value: () => string | null;
|
|
875
1049
|
label: () => string | null | undefined;
|
|
1050
|
+
title: () => string | null | undefined;
|
|
1051
|
+
children: (selector: string) => Element[];
|
|
1052
|
+
parents: (selector: string) => ParentNode[];
|
|
1053
|
+
} & {
|
|
1054
|
+
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1055
|
+
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1056
|
+
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1057
|
+
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1058
|
+
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1059
|
+
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1060
|
+
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1061
|
+
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1062
|
+
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1063
|
+
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1064
|
+
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1065
|
+
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1066
|
+
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1067
|
+
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1068
|
+
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1069
|
+
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1070
|
+
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1071
|
+
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1072
|
+
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1073
|
+
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1074
|
+
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1075
|
+
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1076
|
+
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1077
|
+
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1078
|
+
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1079
|
+
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1080
|
+
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1081
|
+
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1082
|
+
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1083
|
+
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1084
|
+
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1085
|
+
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1086
|
+
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1087
|
+
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1088
|
+
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1089
|
+
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1090
|
+
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1091
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1092
|
+
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1093
|
+
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1094
|
+
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1095
|
+
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1096
|
+
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1097
|
+
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1098
|
+
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1099
|
+
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1100
|
+
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1101
|
+
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1102
|
+
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1103
|
+
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1104
|
+
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1105
|
+
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1106
|
+
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1107
|
+
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1108
|
+
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1109
|
+
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1110
|
+
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1111
|
+
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1112
|
+
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1113
|
+
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1114
|
+
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1115
|
+
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1116
|
+
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1117
|
+
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1118
|
+
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1119
|
+
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1120
|
+
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1121
|
+
} & {
|
|
1122
|
+
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<void | Event>;
|
|
1123
|
+
} & {
|
|
1124
|
+
keyDown: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1125
|
+
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1126
|
+
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1127
|
+
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
1128
|
+
findTooltipContent: (...args: any[]) => any;
|
|
1129
|
+
click: (element: any, ...args: any[]) => Promise<Event>;
|
|
1130
|
+
}>>;
|
|
1131
|
+
findPageInput: (...args: any[]) => Promise<{
|
|
1132
|
+
findWithLabel: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithLabel;
|
|
1133
|
+
findWithText: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithText;
|
|
1134
|
+
findWithTitle: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithTitle;
|
|
1135
|
+
findAllByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllByQuery;
|
|
1136
|
+
findByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findByQuery;
|
|
1137
|
+
findAll: typeof import("@instructure/ui-test-queries/src/utils/queries").findAll;
|
|
1138
|
+
find: typeof import("@instructure/ui-test-queries/src/utils/queries").find;
|
|
1139
|
+
findAllFrames: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllFrames;
|
|
1140
|
+
findFrame: typeof import("@instructure/ui-test-queries/src/utils/queries").findFrame;
|
|
1141
|
+
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1142
|
+
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1143
|
+
} & {
|
|
1144
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1145
|
+
highlight: boolean;
|
|
1146
|
+
} | undefined) => string;
|
|
1147
|
+
visible: () => boolean;
|
|
876
1148
|
getId: () => string;
|
|
877
1149
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
878
1150
|
getOwnerDocument: () => Document;
|
|
879
1151
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
880
1152
|
getTagName: () => string;
|
|
1153
|
+
tagName: () => string;
|
|
881
1154
|
typeIn: (text: string) => Promise<void>;
|
|
1155
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
882
1156
|
getDOMNode: () => Element;
|
|
883
1157
|
node: () => Element;
|
|
884
1158
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -888,6 +1162,7 @@ export declare const PaginationLocator: {
|
|
|
888
1162
|
getTextContent: () => string | null;
|
|
889
1163
|
getParentNode: () => ParentNode | null;
|
|
890
1164
|
parent: () => ParentNode | null;
|
|
1165
|
+
getBoundingClientRect: () => DOMRect;
|
|
891
1166
|
rect: () => DOMRect;
|
|
892
1167
|
hasClass: (classname: string) => boolean;
|
|
893
1168
|
containsFocus: () => boolean;
|
|
@@ -899,17 +1174,25 @@ export declare const PaginationLocator: {
|
|
|
899
1174
|
exists: () => boolean;
|
|
900
1175
|
text: () => string | null;
|
|
901
1176
|
empty: () => boolean;
|
|
1177
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
902
1178
|
descendants: (selector: string) => Element[];
|
|
903
1179
|
ancestors: (selector: string) => ParentNode[];
|
|
904
1180
|
attribute: (qualifiedName: string) => string | null;
|
|
905
1181
|
style: (property: string) => string;
|
|
906
1182
|
classNames: () => string[];
|
|
1183
|
+
id: () => string;
|
|
1184
|
+
matches: (selector: string | undefined) => boolean;
|
|
907
1185
|
checked: () => any;
|
|
908
1186
|
selected: () => any;
|
|
1187
|
+
disabled: () => string | null;
|
|
909
1188
|
readonly: () => any;
|
|
1189
|
+
role: () => string | null;
|
|
1190
|
+
value: () => string | null;
|
|
1191
|
+
label: () => string | null | undefined;
|
|
1192
|
+
title: () => string | null | undefined;
|
|
1193
|
+
children: (selector: string) => Element[];
|
|
910
1194
|
parents: (selector: string) => ParentNode[];
|
|
911
1195
|
} & {
|
|
912
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
913
1196
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
914
1197
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
915
1198
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -947,6 +1230,7 @@ export declare const PaginationLocator: {
|
|
|
947
1230
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
948
1231
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
949
1232
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1233
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
950
1234
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
951
1235
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
952
1236
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -983,8 +1267,8 @@ export declare const PaginationLocator: {
|
|
|
983
1267
|
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
984
1268
|
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
985
1269
|
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
986
|
-
|
|
987
|
-
|
|
1270
|
+
findInput: (...args: any[]) => any;
|
|
1271
|
+
findNumberInputArrows: (...args: any[]) => any;
|
|
988
1272
|
}>>;
|
|
989
1273
|
}>)[]>;
|
|
990
1274
|
find: (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<{
|
|
@@ -1003,25 +1287,15 @@ export declare const PaginationLocator: {
|
|
|
1003
1287
|
toString: (maxLength?: number | undefined, options?: {
|
|
1004
1288
|
highlight: boolean;
|
|
1005
1289
|
} | undefined) => string;
|
|
1006
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1007
|
-
children: (selector: string) => Element[];
|
|
1008
|
-
title: () => string | null | undefined;
|
|
1009
|
-
id: () => string;
|
|
1010
|
-
tagName: () => string;
|
|
1011
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1012
|
-
getBoundingClientRect: () => DOMRect;
|
|
1013
|
-
matches: (selector: string | undefined) => boolean;
|
|
1014
1290
|
visible: () => boolean;
|
|
1015
|
-
value: () => string | null;
|
|
1016
|
-
disabled: () => string | null;
|
|
1017
|
-
role: () => string | null;
|
|
1018
|
-
label: () => string | null | undefined;
|
|
1019
1291
|
getId: () => string;
|
|
1020
1292
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1021
1293
|
getOwnerDocument: () => Document;
|
|
1022
1294
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1023
1295
|
getTagName: () => string;
|
|
1296
|
+
tagName: () => string;
|
|
1024
1297
|
typeIn: (text: string) => Promise<void>;
|
|
1298
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1025
1299
|
getDOMNode: () => Element;
|
|
1026
1300
|
node: () => Element;
|
|
1027
1301
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1031,6 +1305,7 @@ export declare const PaginationLocator: {
|
|
|
1031
1305
|
getTextContent: () => string | null;
|
|
1032
1306
|
getParentNode: () => ParentNode | null;
|
|
1033
1307
|
parent: () => ParentNode | null;
|
|
1308
|
+
getBoundingClientRect: () => DOMRect;
|
|
1034
1309
|
rect: () => DOMRect;
|
|
1035
1310
|
hasClass: (classname: string) => boolean;
|
|
1036
1311
|
containsFocus: () => boolean;
|
|
@@ -1042,17 +1317,25 @@ export declare const PaginationLocator: {
|
|
|
1042
1317
|
exists: () => boolean;
|
|
1043
1318
|
text: () => string | null;
|
|
1044
1319
|
empty: () => boolean;
|
|
1320
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1045
1321
|
descendants: (selector: string) => Element[];
|
|
1046
1322
|
ancestors: (selector: string) => ParentNode[];
|
|
1047
1323
|
attribute: (qualifiedName: string) => string | null;
|
|
1048
1324
|
style: (property: string) => string;
|
|
1049
1325
|
classNames: () => string[];
|
|
1326
|
+
id: () => string;
|
|
1327
|
+
matches: (selector: string | undefined) => boolean;
|
|
1050
1328
|
checked: () => any;
|
|
1051
1329
|
selected: () => any;
|
|
1330
|
+
disabled: () => string | null;
|
|
1052
1331
|
readonly: () => any;
|
|
1332
|
+
role: () => string | null;
|
|
1333
|
+
value: () => string | null;
|
|
1334
|
+
label: () => string | null | undefined;
|
|
1335
|
+
title: () => string | null | undefined;
|
|
1336
|
+
children: (selector: string) => Element[];
|
|
1053
1337
|
parents: (selector: string) => ParentNode[];
|
|
1054
1338
|
} & {
|
|
1055
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1056
1339
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1057
1340
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1058
1341
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1090,6 +1373,7 @@ export declare const PaginationLocator: {
|
|
|
1090
1373
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1091
1374
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1092
1375
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1376
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1093
1377
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1094
1378
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1095
1379
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1142,25 +1426,15 @@ export declare const PaginationLocator: {
|
|
|
1142
1426
|
toString: (maxLength?: number | undefined, options?: {
|
|
1143
1427
|
highlight: boolean;
|
|
1144
1428
|
} | undefined) => string;
|
|
1145
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1146
|
-
children: (selector: string) => Element[];
|
|
1147
|
-
title: () => string | null | undefined;
|
|
1148
|
-
id: () => string;
|
|
1149
|
-
tagName: () => string;
|
|
1150
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1151
|
-
getBoundingClientRect: () => DOMRect;
|
|
1152
|
-
matches: (selector: string | undefined) => boolean;
|
|
1153
1429
|
visible: () => boolean;
|
|
1154
|
-
value: () => string | null;
|
|
1155
|
-
disabled: () => string | null;
|
|
1156
|
-
role: () => string | null;
|
|
1157
|
-
label: () => string | null | undefined;
|
|
1158
1430
|
getId: () => string;
|
|
1159
1431
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1160
1432
|
getOwnerDocument: () => Document;
|
|
1161
1433
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1162
1434
|
getTagName: () => string;
|
|
1435
|
+
tagName: () => string;
|
|
1163
1436
|
typeIn: (text: string) => Promise<void>;
|
|
1437
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1164
1438
|
getDOMNode: () => Element;
|
|
1165
1439
|
node: () => Element;
|
|
1166
1440
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1170,6 +1444,7 @@ export declare const PaginationLocator: {
|
|
|
1170
1444
|
getTextContent: () => string | null;
|
|
1171
1445
|
getParentNode: () => ParentNode | null;
|
|
1172
1446
|
parent: () => ParentNode | null;
|
|
1447
|
+
getBoundingClientRect: () => DOMRect;
|
|
1173
1448
|
rect: () => DOMRect;
|
|
1174
1449
|
hasClass: (classname: string) => boolean;
|
|
1175
1450
|
containsFocus: () => boolean;
|
|
@@ -1181,17 +1456,25 @@ export declare const PaginationLocator: {
|
|
|
1181
1456
|
exists: () => boolean;
|
|
1182
1457
|
text: () => string | null;
|
|
1183
1458
|
empty: () => boolean;
|
|
1459
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1184
1460
|
descendants: (selector: string) => Element[];
|
|
1185
1461
|
ancestors: (selector: string) => ParentNode[];
|
|
1186
1462
|
attribute: (qualifiedName: string) => string | null;
|
|
1187
1463
|
style: (property: string) => string;
|
|
1188
1464
|
classNames: () => string[];
|
|
1465
|
+
id: () => string;
|
|
1466
|
+
matches: (selector: string | undefined) => boolean;
|
|
1189
1467
|
checked: () => any;
|
|
1190
1468
|
selected: () => any;
|
|
1469
|
+
disabled: () => string | null;
|
|
1191
1470
|
readonly: () => any;
|
|
1471
|
+
role: () => string | null;
|
|
1472
|
+
value: () => string | null;
|
|
1473
|
+
label: () => string | null | undefined;
|
|
1474
|
+
title: () => string | null | undefined;
|
|
1475
|
+
children: (selector: string) => Element[];
|
|
1192
1476
|
parents: (selector: string) => ParentNode[];
|
|
1193
1477
|
} & {
|
|
1194
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1195
1478
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1196
1479
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1197
1480
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1229,6 +1512,7 @@ export declare const PaginationLocator: {
|
|
|
1229
1512
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1230
1513
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1231
1514
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1515
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1232
1516
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1233
1517
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1234
1518
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1281,25 +1565,154 @@ export declare const PaginationLocator: {
|
|
|
1281
1565
|
toString: (maxLength?: number | undefined, options?: {
|
|
1282
1566
|
highlight: boolean;
|
|
1283
1567
|
} | undefined) => string;
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1568
|
+
visible: () => boolean;
|
|
1569
|
+
getId: () => string;
|
|
1570
|
+
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1571
|
+
getOwnerDocument: () => Document;
|
|
1572
|
+
getComputedStyle: () => CSSStyleDeclaration;
|
|
1573
|
+
getTagName: () => string;
|
|
1288
1574
|
tagName: () => string;
|
|
1575
|
+
typeIn: (text: string) => Promise<void>;
|
|
1289
1576
|
getAttribute: (qualifiedName: string) => string | null;
|
|
1577
|
+
getDOMNode: () => Element;
|
|
1578
|
+
node: () => Element;
|
|
1579
|
+
debug: (maxLength?: number | undefined, options?: {
|
|
1580
|
+
highlight: boolean;
|
|
1581
|
+
} | undefined) => void;
|
|
1582
|
+
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1583
|
+
getTextContent: () => string | null;
|
|
1584
|
+
getParentNode: () => ParentNode | null;
|
|
1585
|
+
parent: () => ParentNode | null;
|
|
1290
1586
|
getBoundingClientRect: () => DOMRect;
|
|
1587
|
+
rect: () => DOMRect;
|
|
1588
|
+
hasClass: (classname: string) => boolean;
|
|
1589
|
+
containsFocus: () => boolean;
|
|
1590
|
+
focused: () => boolean;
|
|
1591
|
+
focusable: () => boolean;
|
|
1592
|
+
tabbable: () => boolean;
|
|
1593
|
+
clickable: () => boolean;
|
|
1594
|
+
onscreen: () => boolean;
|
|
1595
|
+
exists: () => boolean;
|
|
1596
|
+
text: () => string | null;
|
|
1597
|
+
empty: () => boolean;
|
|
1598
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1599
|
+
descendants: (selector: string) => Element[];
|
|
1600
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1601
|
+
attribute: (qualifiedName: string) => string | null;
|
|
1602
|
+
style: (property: string) => string;
|
|
1603
|
+
classNames: () => string[];
|
|
1604
|
+
id: () => string;
|
|
1291
1605
|
matches: (selector: string | undefined) => boolean;
|
|
1292
|
-
|
|
1293
|
-
|
|
1606
|
+
checked: () => any;
|
|
1607
|
+
selected: () => any;
|
|
1294
1608
|
disabled: () => string | null;
|
|
1609
|
+
readonly: () => any;
|
|
1295
1610
|
role: () => string | null;
|
|
1611
|
+
value: () => string | null;
|
|
1296
1612
|
label: () => string | null | undefined;
|
|
1613
|
+
title: () => string | null | undefined;
|
|
1614
|
+
children: (selector: string) => Element[];
|
|
1615
|
+
parents: (selector: string) => ParentNode[];
|
|
1616
|
+
} & {
|
|
1617
|
+
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1618
|
+
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1619
|
+
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1620
|
+
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1621
|
+
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1622
|
+
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1623
|
+
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1624
|
+
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1625
|
+
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1626
|
+
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1627
|
+
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1628
|
+
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1629
|
+
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1630
|
+
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1631
|
+
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1632
|
+
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1633
|
+
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1634
|
+
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1635
|
+
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1636
|
+
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1637
|
+
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1638
|
+
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1639
|
+
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1640
|
+
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1641
|
+
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1642
|
+
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1643
|
+
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1644
|
+
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1645
|
+
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1646
|
+
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1647
|
+
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1648
|
+
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1649
|
+
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1650
|
+
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1651
|
+
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1652
|
+
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1653
|
+
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1654
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1655
|
+
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1656
|
+
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1657
|
+
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1658
|
+
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1659
|
+
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1660
|
+
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1661
|
+
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1662
|
+
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1663
|
+
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1664
|
+
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1665
|
+
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1666
|
+
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1667
|
+
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1668
|
+
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1669
|
+
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1670
|
+
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1671
|
+
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1672
|
+
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1673
|
+
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1674
|
+
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1675
|
+
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1676
|
+
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1677
|
+
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1678
|
+
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1679
|
+
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1680
|
+
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1681
|
+
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1682
|
+
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1683
|
+
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1684
|
+
} & {
|
|
1685
|
+
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<void | Event>;
|
|
1686
|
+
} & {
|
|
1687
|
+
keyDown: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1688
|
+
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1689
|
+
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1690
|
+
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<Record<string, unknown>>>;
|
|
1691
|
+
findArrowButton: (...args: any[]) => Promise<{
|
|
1692
|
+
findWithLabel: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithLabel;
|
|
1693
|
+
findWithText: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithText;
|
|
1694
|
+
findWithTitle: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithTitle;
|
|
1695
|
+
findAllByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllByQuery;
|
|
1696
|
+
findByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findByQuery;
|
|
1697
|
+
findAll: typeof import("@instructure/ui-test-queries/src/utils/queries").findAll;
|
|
1698
|
+
find: typeof import("@instructure/ui-test-queries/src/utils/queries").find;
|
|
1699
|
+
findAllFrames: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllFrames;
|
|
1700
|
+
findFrame: typeof import("@instructure/ui-test-queries/src/utils/queries").findFrame;
|
|
1701
|
+
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1702
|
+
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1703
|
+
} & {
|
|
1704
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1705
|
+
highlight: boolean;
|
|
1706
|
+
} | undefined) => string;
|
|
1707
|
+
visible: () => boolean;
|
|
1297
1708
|
getId: () => string;
|
|
1298
1709
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1299
1710
|
getOwnerDocument: () => Document;
|
|
1300
1711
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1301
1712
|
getTagName: () => string;
|
|
1713
|
+
tagName: () => string;
|
|
1302
1714
|
typeIn: (text: string) => Promise<void>;
|
|
1715
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1303
1716
|
getDOMNode: () => Element;
|
|
1304
1717
|
node: () => Element;
|
|
1305
1718
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1309,6 +1722,7 @@ export declare const PaginationLocator: {
|
|
|
1309
1722
|
getTextContent: () => string | null;
|
|
1310
1723
|
getParentNode: () => ParentNode | null;
|
|
1311
1724
|
parent: () => ParentNode | null;
|
|
1725
|
+
getBoundingClientRect: () => DOMRect;
|
|
1312
1726
|
rect: () => DOMRect;
|
|
1313
1727
|
hasClass: (classname: string) => boolean;
|
|
1314
1728
|
containsFocus: () => boolean;
|
|
@@ -1320,17 +1734,25 @@ export declare const PaginationLocator: {
|
|
|
1320
1734
|
exists: () => boolean;
|
|
1321
1735
|
text: () => string | null;
|
|
1322
1736
|
empty: () => boolean;
|
|
1737
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1323
1738
|
descendants: (selector: string) => Element[];
|
|
1324
1739
|
ancestors: (selector: string) => ParentNode[];
|
|
1325
1740
|
attribute: (qualifiedName: string) => string | null;
|
|
1326
1741
|
style: (property: string) => string;
|
|
1327
1742
|
classNames: () => string[];
|
|
1743
|
+
id: () => string;
|
|
1744
|
+
matches: (selector: string | undefined) => boolean;
|
|
1328
1745
|
checked: () => any;
|
|
1329
1746
|
selected: () => any;
|
|
1747
|
+
disabled: () => string | null;
|
|
1330
1748
|
readonly: () => any;
|
|
1749
|
+
role: () => string | null;
|
|
1750
|
+
value: () => string | null;
|
|
1751
|
+
label: () => string | null | undefined;
|
|
1752
|
+
title: () => string | null | undefined;
|
|
1753
|
+
children: (selector: string) => Element[];
|
|
1331
1754
|
parents: (selector: string) => ParentNode[];
|
|
1332
1755
|
} & {
|
|
1333
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1334
1756
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1335
1757
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1336
1758
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1368,6 +1790,7 @@ export declare const PaginationLocator: {
|
|
|
1368
1790
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1369
1791
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1370
1792
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1793
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1371
1794
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1372
1795
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1373
1796
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1403,8 +1826,11 @@ export declare const PaginationLocator: {
|
|
|
1403
1826
|
keyDown: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1404
1827
|
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1405
1828
|
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1406
|
-
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<
|
|
1407
|
-
|
|
1829
|
+
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
1830
|
+
findTooltipContent: (...args: any[]) => any;
|
|
1831
|
+
click: (element: any, ...args: any[]) => Promise<Event>;
|
|
1832
|
+
}>>;
|
|
1833
|
+
findPageInput: (...args: any[]) => Promise<{
|
|
1408
1834
|
findWithLabel: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithLabel;
|
|
1409
1835
|
findWithText: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithText;
|
|
1410
1836
|
findWithTitle: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithTitle;
|
|
@@ -1420,25 +1846,15 @@ export declare const PaginationLocator: {
|
|
|
1420
1846
|
toString: (maxLength?: number | undefined, options?: {
|
|
1421
1847
|
highlight: boolean;
|
|
1422
1848
|
} | undefined) => string;
|
|
1423
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1424
|
-
children: (selector: string) => Element[];
|
|
1425
|
-
title: () => string | null | undefined;
|
|
1426
|
-
id: () => string;
|
|
1427
|
-
tagName: () => string;
|
|
1428
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1429
|
-
getBoundingClientRect: () => DOMRect;
|
|
1430
|
-
matches: (selector: string | undefined) => boolean;
|
|
1431
1849
|
visible: () => boolean;
|
|
1432
|
-
value: () => string | null;
|
|
1433
|
-
disabled: () => string | null;
|
|
1434
|
-
role: () => string | null;
|
|
1435
|
-
label: () => string | null | undefined;
|
|
1436
1850
|
getId: () => string;
|
|
1437
1851
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1438
1852
|
getOwnerDocument: () => Document;
|
|
1439
1853
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1440
1854
|
getTagName: () => string;
|
|
1855
|
+
tagName: () => string;
|
|
1441
1856
|
typeIn: (text: string) => Promise<void>;
|
|
1857
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1442
1858
|
getDOMNode: () => Element;
|
|
1443
1859
|
node: () => Element;
|
|
1444
1860
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1448,6 +1864,7 @@ export declare const PaginationLocator: {
|
|
|
1448
1864
|
getTextContent: () => string | null;
|
|
1449
1865
|
getParentNode: () => ParentNode | null;
|
|
1450
1866
|
parent: () => ParentNode | null;
|
|
1867
|
+
getBoundingClientRect: () => DOMRect;
|
|
1451
1868
|
rect: () => DOMRect;
|
|
1452
1869
|
hasClass: (classname: string) => boolean;
|
|
1453
1870
|
containsFocus: () => boolean;
|
|
@@ -1459,17 +1876,25 @@ export declare const PaginationLocator: {
|
|
|
1459
1876
|
exists: () => boolean;
|
|
1460
1877
|
text: () => string | null;
|
|
1461
1878
|
empty: () => boolean;
|
|
1879
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1462
1880
|
descendants: (selector: string) => Element[];
|
|
1463
1881
|
ancestors: (selector: string) => ParentNode[];
|
|
1464
1882
|
attribute: (qualifiedName: string) => string | null;
|
|
1465
1883
|
style: (property: string) => string;
|
|
1466
1884
|
classNames: () => string[];
|
|
1885
|
+
id: () => string;
|
|
1886
|
+
matches: (selector: string | undefined) => boolean;
|
|
1467
1887
|
checked: () => any;
|
|
1468
1888
|
selected: () => any;
|
|
1889
|
+
disabled: () => string | null;
|
|
1469
1890
|
readonly: () => any;
|
|
1891
|
+
role: () => string | null;
|
|
1892
|
+
value: () => string | null;
|
|
1893
|
+
label: () => string | null | undefined;
|
|
1894
|
+
title: () => string | null | undefined;
|
|
1895
|
+
children: (selector: string) => Element[];
|
|
1470
1896
|
parents: (selector: string) => ParentNode[];
|
|
1471
1897
|
} & {
|
|
1472
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1473
1898
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1474
1899
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1475
1900
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1507,6 +1932,7 @@ export declare const PaginationLocator: {
|
|
|
1507
1932
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1508
1933
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1509
1934
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1935
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1510
1936
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1511
1937
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1512
1938
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1543,8 +1969,8 @@ export declare const PaginationLocator: {
|
|
|
1543
1969
|
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1544
1970
|
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1545
1971
|
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
1546
|
-
|
|
1547
|
-
|
|
1972
|
+
findInput: (...args: any[]) => any;
|
|
1973
|
+
findNumberInputArrows: (...args: any[]) => any;
|
|
1548
1974
|
}>>;
|
|
1549
1975
|
}>>;
|
|
1550
1976
|
findWithText: (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<{
|
|
@@ -1563,25 +1989,15 @@ export declare const PaginationLocator: {
|
|
|
1563
1989
|
toString: (maxLength?: number | undefined, options?: {
|
|
1564
1990
|
highlight: boolean;
|
|
1565
1991
|
} | undefined) => string;
|
|
1566
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1567
|
-
children: (selector: string) => Element[];
|
|
1568
|
-
title: () => string | null | undefined;
|
|
1569
|
-
id: () => string;
|
|
1570
|
-
tagName: () => string;
|
|
1571
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1572
|
-
getBoundingClientRect: () => DOMRect;
|
|
1573
|
-
matches: (selector: string | undefined) => boolean;
|
|
1574
1992
|
visible: () => boolean;
|
|
1575
|
-
value: () => string | null;
|
|
1576
|
-
disabled: () => string | null;
|
|
1577
|
-
role: () => string | null;
|
|
1578
|
-
label: () => string | null | undefined;
|
|
1579
1993
|
getId: () => string;
|
|
1580
1994
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1581
1995
|
getOwnerDocument: () => Document;
|
|
1582
1996
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1583
1997
|
getTagName: () => string;
|
|
1998
|
+
tagName: () => string;
|
|
1584
1999
|
typeIn: (text: string) => Promise<void>;
|
|
2000
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1585
2001
|
getDOMNode: () => Element;
|
|
1586
2002
|
node: () => Element;
|
|
1587
2003
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1591,6 +2007,7 @@ export declare const PaginationLocator: {
|
|
|
1591
2007
|
getTextContent: () => string | null;
|
|
1592
2008
|
getParentNode: () => ParentNode | null;
|
|
1593
2009
|
parent: () => ParentNode | null;
|
|
2010
|
+
getBoundingClientRect: () => DOMRect;
|
|
1594
2011
|
rect: () => DOMRect;
|
|
1595
2012
|
hasClass: (classname: string) => boolean;
|
|
1596
2013
|
containsFocus: () => boolean;
|
|
@@ -1602,17 +2019,25 @@ export declare const PaginationLocator: {
|
|
|
1602
2019
|
exists: () => boolean;
|
|
1603
2020
|
text: () => string | null;
|
|
1604
2021
|
empty: () => boolean;
|
|
2022
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1605
2023
|
descendants: (selector: string) => Element[];
|
|
1606
2024
|
ancestors: (selector: string) => ParentNode[];
|
|
1607
2025
|
attribute: (qualifiedName: string) => string | null;
|
|
1608
2026
|
style: (property: string) => string;
|
|
1609
2027
|
classNames: () => string[];
|
|
2028
|
+
id: () => string;
|
|
2029
|
+
matches: (selector: string | undefined) => boolean;
|
|
1610
2030
|
checked: () => any;
|
|
1611
2031
|
selected: () => any;
|
|
2032
|
+
disabled: () => string | null;
|
|
1612
2033
|
readonly: () => any;
|
|
2034
|
+
role: () => string | null;
|
|
2035
|
+
value: () => string | null;
|
|
2036
|
+
label: () => string | null | undefined;
|
|
2037
|
+
title: () => string | null | undefined;
|
|
2038
|
+
children: (selector: string) => Element[];
|
|
1613
2039
|
parents: (selector: string) => ParentNode[];
|
|
1614
2040
|
} & {
|
|
1615
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1616
2041
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1617
2042
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1618
2043
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1650,6 +2075,7 @@ export declare const PaginationLocator: {
|
|
|
1650
2075
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1651
2076
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1652
2077
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2078
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1653
2079
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1654
2080
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1655
2081
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1702,25 +2128,15 @@ export declare const PaginationLocator: {
|
|
|
1702
2128
|
toString: (maxLength?: number | undefined, options?: {
|
|
1703
2129
|
highlight: boolean;
|
|
1704
2130
|
} | undefined) => string;
|
|
1705
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1706
|
-
children: (selector: string) => Element[];
|
|
1707
|
-
title: () => string | null | undefined;
|
|
1708
|
-
id: () => string;
|
|
1709
|
-
tagName: () => string;
|
|
1710
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1711
|
-
getBoundingClientRect: () => DOMRect;
|
|
1712
|
-
matches: (selector: string | undefined) => boolean;
|
|
1713
2131
|
visible: () => boolean;
|
|
1714
|
-
value: () => string | null;
|
|
1715
|
-
disabled: () => string | null;
|
|
1716
|
-
role: () => string | null;
|
|
1717
|
-
label: () => string | null | undefined;
|
|
1718
2132
|
getId: () => string;
|
|
1719
2133
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1720
2134
|
getOwnerDocument: () => Document;
|
|
1721
2135
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1722
2136
|
getTagName: () => string;
|
|
2137
|
+
tagName: () => string;
|
|
1723
2138
|
typeIn: (text: string) => Promise<void>;
|
|
2139
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1724
2140
|
getDOMNode: () => Element;
|
|
1725
2141
|
node: () => Element;
|
|
1726
2142
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1730,6 +2146,7 @@ export declare const PaginationLocator: {
|
|
|
1730
2146
|
getTextContent: () => string | null;
|
|
1731
2147
|
getParentNode: () => ParentNode | null;
|
|
1732
2148
|
parent: () => ParentNode | null;
|
|
2149
|
+
getBoundingClientRect: () => DOMRect;
|
|
1733
2150
|
rect: () => DOMRect;
|
|
1734
2151
|
hasClass: (classname: string) => boolean;
|
|
1735
2152
|
containsFocus: () => boolean;
|
|
@@ -1741,17 +2158,25 @@ export declare const PaginationLocator: {
|
|
|
1741
2158
|
exists: () => boolean;
|
|
1742
2159
|
text: () => string | null;
|
|
1743
2160
|
empty: () => boolean;
|
|
2161
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1744
2162
|
descendants: (selector: string) => Element[];
|
|
1745
2163
|
ancestors: (selector: string) => ParentNode[];
|
|
1746
2164
|
attribute: (qualifiedName: string) => string | null;
|
|
1747
2165
|
style: (property: string) => string;
|
|
1748
2166
|
classNames: () => string[];
|
|
2167
|
+
id: () => string;
|
|
2168
|
+
matches: (selector: string | undefined) => boolean;
|
|
1749
2169
|
checked: () => any;
|
|
1750
2170
|
selected: () => any;
|
|
2171
|
+
disabled: () => string | null;
|
|
1751
2172
|
readonly: () => any;
|
|
2173
|
+
role: () => string | null;
|
|
2174
|
+
value: () => string | null;
|
|
2175
|
+
label: () => string | null | undefined;
|
|
2176
|
+
title: () => string | null | undefined;
|
|
2177
|
+
children: (selector: string) => Element[];
|
|
1752
2178
|
parents: (selector: string) => ParentNode[];
|
|
1753
2179
|
} & {
|
|
1754
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1755
2180
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1756
2181
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1757
2182
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1789,6 +2214,7 @@ export declare const PaginationLocator: {
|
|
|
1789
2214
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1790
2215
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1791
2216
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2217
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1792
2218
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1793
2219
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1794
2220
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1841,25 +2267,15 @@ export declare const PaginationLocator: {
|
|
|
1841
2267
|
toString: (maxLength?: number | undefined, options?: {
|
|
1842
2268
|
highlight: boolean;
|
|
1843
2269
|
} | undefined) => string;
|
|
1844
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1845
|
-
children: (selector: string) => Element[];
|
|
1846
|
-
title: () => string | null | undefined;
|
|
1847
|
-
id: () => string;
|
|
1848
|
-
tagName: () => string;
|
|
1849
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1850
|
-
getBoundingClientRect: () => DOMRect;
|
|
1851
|
-
matches: (selector: string | undefined) => boolean;
|
|
1852
2270
|
visible: () => boolean;
|
|
1853
|
-
value: () => string | null;
|
|
1854
|
-
disabled: () => string | null;
|
|
1855
|
-
role: () => string | null;
|
|
1856
|
-
label: () => string | null | undefined;
|
|
1857
2271
|
getId: () => string;
|
|
1858
2272
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1859
2273
|
getOwnerDocument: () => Document;
|
|
1860
2274
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1861
2275
|
getTagName: () => string;
|
|
2276
|
+
tagName: () => string;
|
|
1862
2277
|
typeIn: (text: string) => Promise<void>;
|
|
2278
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1863
2279
|
getDOMNode: () => Element;
|
|
1864
2280
|
node: () => Element;
|
|
1865
2281
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1869,6 +2285,7 @@ export declare const PaginationLocator: {
|
|
|
1869
2285
|
getTextContent: () => string | null;
|
|
1870
2286
|
getParentNode: () => ParentNode | null;
|
|
1871
2287
|
parent: () => ParentNode | null;
|
|
2288
|
+
getBoundingClientRect: () => DOMRect;
|
|
1872
2289
|
rect: () => DOMRect;
|
|
1873
2290
|
hasClass: (classname: string) => boolean;
|
|
1874
2291
|
containsFocus: () => boolean;
|
|
@@ -1880,17 +2297,25 @@ export declare const PaginationLocator: {
|
|
|
1880
2297
|
exists: () => boolean;
|
|
1881
2298
|
text: () => string | null;
|
|
1882
2299
|
empty: () => boolean;
|
|
2300
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1883
2301
|
descendants: (selector: string) => Element[];
|
|
1884
2302
|
ancestors: (selector: string) => ParentNode[];
|
|
1885
2303
|
attribute: (qualifiedName: string) => string | null;
|
|
1886
2304
|
style: (property: string) => string;
|
|
1887
2305
|
classNames: () => string[];
|
|
2306
|
+
id: () => string;
|
|
2307
|
+
matches: (selector: string | undefined) => boolean;
|
|
1888
2308
|
checked: () => any;
|
|
1889
2309
|
selected: () => any;
|
|
2310
|
+
disabled: () => string | null;
|
|
1890
2311
|
readonly: () => any;
|
|
2312
|
+
role: () => string | null;
|
|
2313
|
+
value: () => string | null;
|
|
2314
|
+
label: () => string | null | undefined;
|
|
2315
|
+
title: () => string | null | undefined;
|
|
2316
|
+
children: (selector: string) => Element[];
|
|
1891
2317
|
parents: (selector: string) => ParentNode[];
|
|
1892
2318
|
} & {
|
|
1893
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1894
2319
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1895
2320
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1896
2321
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1928,6 +2353,7 @@ export declare const PaginationLocator: {
|
|
|
1928
2353
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1929
2354
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1930
2355
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2356
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1931
2357
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1932
2358
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1933
2359
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1980,25 +2406,157 @@ export declare const PaginationLocator: {
|
|
|
1980
2406
|
toString: (maxLength?: number | undefined, options?: {
|
|
1981
2407
|
highlight: boolean;
|
|
1982
2408
|
} | undefined) => string;
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
2409
|
+
visible: () => boolean;
|
|
2410
|
+
getId: () => string;
|
|
2411
|
+
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2412
|
+
getOwnerDocument: () => Document;
|
|
2413
|
+
getComputedStyle: () => CSSStyleDeclaration;
|
|
2414
|
+
getTagName: () => string;
|
|
1987
2415
|
tagName: () => string;
|
|
2416
|
+
typeIn: (text: string) => Promise<void>;
|
|
1988
2417
|
getAttribute: (qualifiedName: string) => string | null;
|
|
2418
|
+
getDOMNode: () => Element;
|
|
2419
|
+
node: () => Element;
|
|
2420
|
+
debug: (maxLength?: number | undefined, options?: {
|
|
2421
|
+
highlight: boolean;
|
|
2422
|
+
} | undefined) => void;
|
|
2423
|
+
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
2424
|
+
getTextContent: () => string | null;
|
|
2425
|
+
getParentNode: () => ParentNode | null;
|
|
2426
|
+
parent: () => ParentNode | null;
|
|
1989
2427
|
getBoundingClientRect: () => DOMRect;
|
|
2428
|
+
rect: () => DOMRect;
|
|
2429
|
+
hasClass: (classname: string) => boolean;
|
|
2430
|
+
containsFocus: () => boolean;
|
|
2431
|
+
focused: () => boolean;
|
|
2432
|
+
focusable: () => boolean;
|
|
2433
|
+
tabbable: () => boolean;
|
|
2434
|
+
clickable: () => boolean;
|
|
2435
|
+
onscreen: () => boolean;
|
|
2436
|
+
exists: () => boolean;
|
|
2437
|
+
text: () => string | null;
|
|
2438
|
+
empty: () => boolean;
|
|
2439
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2440
|
+
descendants: (selector: string) => Element[];
|
|
2441
|
+
ancestors: (selector: string) => ParentNode[];
|
|
2442
|
+
attribute: (qualifiedName: string) => string | null;
|
|
2443
|
+
style: (property: string) => string;
|
|
2444
|
+
classNames: () => string[];
|
|
2445
|
+
id: () => string;
|
|
1990
2446
|
matches: (selector: string | undefined) => boolean;
|
|
2447
|
+
checked: () => any;
|
|
2448
|
+
selected: () => any;
|
|
2449
|
+
disabled: () => string | null;
|
|
2450
|
+
readonly: () => any;
|
|
2451
|
+
role: () => string | null;
|
|
2452
|
+
value: () => string | null;
|
|
2453
|
+
label: () => string | null | undefined;
|
|
2454
|
+
title: () => string | null | undefined;
|
|
2455
|
+
children: (selector: string) => Element[];
|
|
2456
|
+
parents: (selector: string) => ParentNode[];
|
|
2457
|
+
} & {
|
|
2458
|
+
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2459
|
+
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2460
|
+
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2461
|
+
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2462
|
+
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2463
|
+
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2464
|
+
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2465
|
+
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2466
|
+
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2467
|
+
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2468
|
+
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2469
|
+
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2470
|
+
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2471
|
+
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2472
|
+
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2473
|
+
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2474
|
+
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2475
|
+
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2476
|
+
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2477
|
+
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2478
|
+
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2479
|
+
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2480
|
+
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2481
|
+
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2482
|
+
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2483
|
+
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2484
|
+
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2485
|
+
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2486
|
+
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2487
|
+
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2488
|
+
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2489
|
+
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2490
|
+
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2491
|
+
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2492
|
+
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2493
|
+
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2494
|
+
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2495
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2496
|
+
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2497
|
+
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2498
|
+
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2499
|
+
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2500
|
+
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2501
|
+
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2502
|
+
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2503
|
+
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2504
|
+
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2505
|
+
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2506
|
+
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2507
|
+
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2508
|
+
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2509
|
+
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2510
|
+
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2511
|
+
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2512
|
+
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2513
|
+
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2514
|
+
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2515
|
+
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2516
|
+
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2517
|
+
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2518
|
+
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2519
|
+
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2520
|
+
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2521
|
+
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2522
|
+
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2523
|
+
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2524
|
+
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2525
|
+
} & {
|
|
2526
|
+
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<void | Event>;
|
|
2527
|
+
} & {
|
|
2528
|
+
keyDown: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2529
|
+
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2530
|
+
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2531
|
+
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
2532
|
+
findTooltipContent: (...args: any[]) => any;
|
|
2533
|
+
click: (element: any, ...args: any[]) => Promise<Event>;
|
|
2534
|
+
}>>;
|
|
2535
|
+
findPageInput: (...args: any[]) => Promise<{
|
|
2536
|
+
findWithLabel: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithLabel;
|
|
2537
|
+
findWithText: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithText;
|
|
2538
|
+
findWithTitle: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithTitle;
|
|
2539
|
+
findAllByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllByQuery;
|
|
2540
|
+
findByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findByQuery;
|
|
2541
|
+
findAll: typeof import("@instructure/ui-test-queries/src/utils/queries").findAll;
|
|
2542
|
+
find: typeof import("@instructure/ui-test-queries/src/utils/queries").find;
|
|
2543
|
+
findAllFrames: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllFrames;
|
|
2544
|
+
findFrame: typeof import("@instructure/ui-test-queries/src/utils/queries").findFrame;
|
|
2545
|
+
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
2546
|
+
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
2547
|
+
} & {
|
|
2548
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
2549
|
+
highlight: boolean;
|
|
2550
|
+
} | undefined) => string;
|
|
1991
2551
|
visible: () => boolean;
|
|
1992
|
-
value: () => string | null;
|
|
1993
|
-
disabled: () => string | null;
|
|
1994
|
-
role: () => string | null;
|
|
1995
|
-
label: () => string | null | undefined;
|
|
1996
2552
|
getId: () => string;
|
|
1997
2553
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1998
2554
|
getOwnerDocument: () => Document;
|
|
1999
2555
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2000
2556
|
getTagName: () => string;
|
|
2557
|
+
tagName: () => string;
|
|
2001
2558
|
typeIn: (text: string) => Promise<void>;
|
|
2559
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2002
2560
|
getDOMNode: () => Element;
|
|
2003
2561
|
node: () => Element;
|
|
2004
2562
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2008,6 +2566,7 @@ export declare const PaginationLocator: {
|
|
|
2008
2566
|
getTextContent: () => string | null;
|
|
2009
2567
|
getParentNode: () => ParentNode | null;
|
|
2010
2568
|
parent: () => ParentNode | null;
|
|
2569
|
+
getBoundingClientRect: () => DOMRect;
|
|
2011
2570
|
rect: () => DOMRect;
|
|
2012
2571
|
hasClass: (classname: string) => boolean;
|
|
2013
2572
|
containsFocus: () => boolean;
|
|
@@ -2019,17 +2578,25 @@ export declare const PaginationLocator: {
|
|
|
2019
2578
|
exists: () => boolean;
|
|
2020
2579
|
text: () => string | null;
|
|
2021
2580
|
empty: () => boolean;
|
|
2581
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2022
2582
|
descendants: (selector: string) => Element[];
|
|
2023
2583
|
ancestors: (selector: string) => ParentNode[];
|
|
2024
2584
|
attribute: (qualifiedName: string) => string | null;
|
|
2025
2585
|
style: (property: string) => string;
|
|
2026
2586
|
classNames: () => string[];
|
|
2587
|
+
id: () => string;
|
|
2588
|
+
matches: (selector: string | undefined) => boolean;
|
|
2027
2589
|
checked: () => any;
|
|
2028
2590
|
selected: () => any;
|
|
2591
|
+
disabled: () => string | null;
|
|
2029
2592
|
readonly: () => any;
|
|
2593
|
+
role: () => string | null;
|
|
2594
|
+
value: () => string | null;
|
|
2595
|
+
label: () => string | null | undefined;
|
|
2596
|
+
title: () => string | null | undefined;
|
|
2597
|
+
children: (selector: string) => Element[];
|
|
2030
2598
|
parents: (selector: string) => ParentNode[];
|
|
2031
2599
|
} & {
|
|
2032
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2033
2600
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2034
2601
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2035
2602
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2067,6 +2634,7 @@ export declare const PaginationLocator: {
|
|
|
2067
2634
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2068
2635
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2069
2636
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2637
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2070
2638
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2071
2639
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2072
2640
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2103,8 +2671,8 @@ export declare const PaginationLocator: {
|
|
|
2103
2671
|
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2104
2672
|
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2105
2673
|
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
2106
|
-
|
|
2107
|
-
|
|
2674
|
+
findInput: (...args: any[]) => any;
|
|
2675
|
+
findNumberInputArrows: (...args: any[]) => any;
|
|
2108
2676
|
}>>;
|
|
2109
2677
|
}>>;
|
|
2110
2678
|
findWithLabel: (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<{
|
|
@@ -2123,25 +2691,15 @@ export declare const PaginationLocator: {
|
|
|
2123
2691
|
toString: (maxLength?: number | undefined, options?: {
|
|
2124
2692
|
highlight: boolean;
|
|
2125
2693
|
} | undefined) => string;
|
|
2126
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2127
|
-
children: (selector: string) => Element[];
|
|
2128
|
-
title: () => string | null | undefined;
|
|
2129
|
-
id: () => string;
|
|
2130
|
-
tagName: () => string;
|
|
2131
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2132
|
-
getBoundingClientRect: () => DOMRect;
|
|
2133
|
-
matches: (selector: string | undefined) => boolean;
|
|
2134
2694
|
visible: () => boolean;
|
|
2135
|
-
value: () => string | null;
|
|
2136
|
-
disabled: () => string | null;
|
|
2137
|
-
role: () => string | null;
|
|
2138
|
-
label: () => string | null | undefined;
|
|
2139
2695
|
getId: () => string;
|
|
2140
2696
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2141
2697
|
getOwnerDocument: () => Document;
|
|
2142
2698
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2143
2699
|
getTagName: () => string;
|
|
2700
|
+
tagName: () => string;
|
|
2144
2701
|
typeIn: (text: string) => Promise<void>;
|
|
2702
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2145
2703
|
getDOMNode: () => Element;
|
|
2146
2704
|
node: () => Element;
|
|
2147
2705
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2151,6 +2709,7 @@ export declare const PaginationLocator: {
|
|
|
2151
2709
|
getTextContent: () => string | null;
|
|
2152
2710
|
getParentNode: () => ParentNode | null;
|
|
2153
2711
|
parent: () => ParentNode | null;
|
|
2712
|
+
getBoundingClientRect: () => DOMRect;
|
|
2154
2713
|
rect: () => DOMRect;
|
|
2155
2714
|
hasClass: (classname: string) => boolean;
|
|
2156
2715
|
containsFocus: () => boolean;
|
|
@@ -2162,17 +2721,25 @@ export declare const PaginationLocator: {
|
|
|
2162
2721
|
exists: () => boolean;
|
|
2163
2722
|
text: () => string | null;
|
|
2164
2723
|
empty: () => boolean;
|
|
2724
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2165
2725
|
descendants: (selector: string) => Element[];
|
|
2166
2726
|
ancestors: (selector: string) => ParentNode[];
|
|
2167
2727
|
attribute: (qualifiedName: string) => string | null;
|
|
2168
2728
|
style: (property: string) => string;
|
|
2169
2729
|
classNames: () => string[];
|
|
2730
|
+
id: () => string;
|
|
2731
|
+
matches: (selector: string | undefined) => boolean;
|
|
2170
2732
|
checked: () => any;
|
|
2171
2733
|
selected: () => any;
|
|
2734
|
+
disabled: () => string | null;
|
|
2172
2735
|
readonly: () => any;
|
|
2736
|
+
role: () => string | null;
|
|
2737
|
+
value: () => string | null;
|
|
2738
|
+
label: () => string | null | undefined;
|
|
2739
|
+
title: () => string | null | undefined;
|
|
2740
|
+
children: (selector: string) => Element[];
|
|
2173
2741
|
parents: (selector: string) => ParentNode[];
|
|
2174
2742
|
} & {
|
|
2175
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2176
2743
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2177
2744
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2178
2745
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2210,6 +2777,7 @@ export declare const PaginationLocator: {
|
|
|
2210
2777
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2211
2778
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2212
2779
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2780
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2213
2781
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2214
2782
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2215
2783
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2262,25 +2830,15 @@ export declare const PaginationLocator: {
|
|
|
2262
2830
|
toString: (maxLength?: number | undefined, options?: {
|
|
2263
2831
|
highlight: boolean;
|
|
2264
2832
|
} | undefined) => string;
|
|
2265
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2266
|
-
children: (selector: string) => Element[];
|
|
2267
|
-
title: () => string | null | undefined;
|
|
2268
|
-
id: () => string;
|
|
2269
|
-
tagName: () => string;
|
|
2270
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2271
|
-
getBoundingClientRect: () => DOMRect;
|
|
2272
|
-
matches: (selector: string | undefined) => boolean;
|
|
2273
2833
|
visible: () => boolean;
|
|
2274
|
-
value: () => string | null;
|
|
2275
|
-
disabled: () => string | null;
|
|
2276
|
-
role: () => string | null;
|
|
2277
|
-
label: () => string | null | undefined;
|
|
2278
2834
|
getId: () => string;
|
|
2279
2835
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2280
2836
|
getOwnerDocument: () => Document;
|
|
2281
2837
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2282
2838
|
getTagName: () => string;
|
|
2839
|
+
tagName: () => string;
|
|
2283
2840
|
typeIn: (text: string) => Promise<void>;
|
|
2841
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2284
2842
|
getDOMNode: () => Element;
|
|
2285
2843
|
node: () => Element;
|
|
2286
2844
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2290,6 +2848,7 @@ export declare const PaginationLocator: {
|
|
|
2290
2848
|
getTextContent: () => string | null;
|
|
2291
2849
|
getParentNode: () => ParentNode | null;
|
|
2292
2850
|
parent: () => ParentNode | null;
|
|
2851
|
+
getBoundingClientRect: () => DOMRect;
|
|
2293
2852
|
rect: () => DOMRect;
|
|
2294
2853
|
hasClass: (classname: string) => boolean;
|
|
2295
2854
|
containsFocus: () => boolean;
|
|
@@ -2301,17 +2860,25 @@ export declare const PaginationLocator: {
|
|
|
2301
2860
|
exists: () => boolean;
|
|
2302
2861
|
text: () => string | null;
|
|
2303
2862
|
empty: () => boolean;
|
|
2863
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2304
2864
|
descendants: (selector: string) => Element[];
|
|
2305
2865
|
ancestors: (selector: string) => ParentNode[];
|
|
2306
2866
|
attribute: (qualifiedName: string) => string | null;
|
|
2307
2867
|
style: (property: string) => string;
|
|
2308
2868
|
classNames: () => string[];
|
|
2869
|
+
id: () => string;
|
|
2870
|
+
matches: (selector: string | undefined) => boolean;
|
|
2309
2871
|
checked: () => any;
|
|
2310
2872
|
selected: () => any;
|
|
2873
|
+
disabled: () => string | null;
|
|
2311
2874
|
readonly: () => any;
|
|
2875
|
+
role: () => string | null;
|
|
2876
|
+
value: () => string | null;
|
|
2877
|
+
label: () => string | null | undefined;
|
|
2878
|
+
title: () => string | null | undefined;
|
|
2879
|
+
children: (selector: string) => Element[];
|
|
2312
2880
|
parents: (selector: string) => ParentNode[];
|
|
2313
2881
|
} & {
|
|
2314
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2315
2882
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2316
2883
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2317
2884
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2349,6 +2916,7 @@ export declare const PaginationLocator: {
|
|
|
2349
2916
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2350
2917
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2351
2918
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2919
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2352
2920
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2353
2921
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2354
2922
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2401,25 +2969,15 @@ export declare const PaginationLocator: {
|
|
|
2401
2969
|
toString: (maxLength?: number | undefined, options?: {
|
|
2402
2970
|
highlight: boolean;
|
|
2403
2971
|
} | undefined) => string;
|
|
2404
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2405
|
-
children: (selector: string) => Element[];
|
|
2406
|
-
title: () => string | null | undefined;
|
|
2407
|
-
id: () => string;
|
|
2408
|
-
tagName: () => string;
|
|
2409
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2410
|
-
getBoundingClientRect: () => DOMRect;
|
|
2411
|
-
matches: (selector: string | undefined) => boolean;
|
|
2412
2972
|
visible: () => boolean;
|
|
2413
|
-
value: () => string | null;
|
|
2414
|
-
disabled: () => string | null;
|
|
2415
|
-
role: () => string | null;
|
|
2416
|
-
label: () => string | null | undefined;
|
|
2417
2973
|
getId: () => string;
|
|
2418
2974
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2419
2975
|
getOwnerDocument: () => Document;
|
|
2420
2976
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2421
2977
|
getTagName: () => string;
|
|
2978
|
+
tagName: () => string;
|
|
2422
2979
|
typeIn: (text: string) => Promise<void>;
|
|
2980
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2423
2981
|
getDOMNode: () => Element;
|
|
2424
2982
|
node: () => Element;
|
|
2425
2983
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2429,6 +2987,7 @@ export declare const PaginationLocator: {
|
|
|
2429
2987
|
getTextContent: () => string | null;
|
|
2430
2988
|
getParentNode: () => ParentNode | null;
|
|
2431
2989
|
parent: () => ParentNode | null;
|
|
2990
|
+
getBoundingClientRect: () => DOMRect;
|
|
2432
2991
|
rect: () => DOMRect;
|
|
2433
2992
|
hasClass: (classname: string) => boolean;
|
|
2434
2993
|
containsFocus: () => boolean;
|
|
@@ -2440,17 +2999,25 @@ export declare const PaginationLocator: {
|
|
|
2440
2999
|
exists: () => boolean;
|
|
2441
3000
|
text: () => string | null;
|
|
2442
3001
|
empty: () => boolean;
|
|
3002
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2443
3003
|
descendants: (selector: string) => Element[];
|
|
2444
3004
|
ancestors: (selector: string) => ParentNode[];
|
|
2445
3005
|
attribute: (qualifiedName: string) => string | null;
|
|
2446
3006
|
style: (property: string) => string;
|
|
2447
3007
|
classNames: () => string[];
|
|
3008
|
+
id: () => string;
|
|
3009
|
+
matches: (selector: string | undefined) => boolean;
|
|
2448
3010
|
checked: () => any;
|
|
2449
3011
|
selected: () => any;
|
|
3012
|
+
disabled: () => string | null;
|
|
2450
3013
|
readonly: () => any;
|
|
3014
|
+
role: () => string | null;
|
|
3015
|
+
value: () => string | null;
|
|
3016
|
+
label: () => string | null | undefined;
|
|
3017
|
+
title: () => string | null | undefined;
|
|
3018
|
+
children: (selector: string) => Element[];
|
|
2451
3019
|
parents: (selector: string) => ParentNode[];
|
|
2452
3020
|
} & {
|
|
2453
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2454
3021
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2455
3022
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2456
3023
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2488,6 +3055,7 @@ export declare const PaginationLocator: {
|
|
|
2488
3055
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2489
3056
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2490
3057
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3058
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2491
3059
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2492
3060
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2493
3061
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2540,25 +3108,157 @@ export declare const PaginationLocator: {
|
|
|
2540
3108
|
toString: (maxLength?: number | undefined, options?: {
|
|
2541
3109
|
highlight: boolean;
|
|
2542
3110
|
} | undefined) => string;
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
3111
|
+
visible: () => boolean;
|
|
3112
|
+
getId: () => string;
|
|
3113
|
+
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
3114
|
+
getOwnerDocument: () => Document;
|
|
3115
|
+
getComputedStyle: () => CSSStyleDeclaration;
|
|
3116
|
+
getTagName: () => string;
|
|
2547
3117
|
tagName: () => string;
|
|
3118
|
+
typeIn: (text: string) => Promise<void>;
|
|
2548
3119
|
getAttribute: (qualifiedName: string) => string | null;
|
|
3120
|
+
getDOMNode: () => Element;
|
|
3121
|
+
node: () => Element;
|
|
3122
|
+
debug: (maxLength?: number | undefined, options?: {
|
|
3123
|
+
highlight: boolean;
|
|
3124
|
+
} | undefined) => void;
|
|
3125
|
+
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
3126
|
+
getTextContent: () => string | null;
|
|
3127
|
+
getParentNode: () => ParentNode | null;
|
|
3128
|
+
parent: () => ParentNode | null;
|
|
2549
3129
|
getBoundingClientRect: () => DOMRect;
|
|
3130
|
+
rect: () => DOMRect;
|
|
3131
|
+
hasClass: (classname: string) => boolean;
|
|
3132
|
+
containsFocus: () => boolean;
|
|
3133
|
+
focused: () => boolean;
|
|
3134
|
+
focusable: () => boolean;
|
|
3135
|
+
tabbable: () => boolean;
|
|
3136
|
+
clickable: () => boolean;
|
|
3137
|
+
onscreen: () => boolean;
|
|
3138
|
+
exists: () => boolean;
|
|
3139
|
+
text: () => string | null;
|
|
3140
|
+
empty: () => boolean;
|
|
3141
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
3142
|
+
descendants: (selector: string) => Element[];
|
|
3143
|
+
ancestors: (selector: string) => ParentNode[];
|
|
3144
|
+
attribute: (qualifiedName: string) => string | null;
|
|
3145
|
+
style: (property: string) => string;
|
|
3146
|
+
classNames: () => string[];
|
|
3147
|
+
id: () => string;
|
|
2550
3148
|
matches: (selector: string | undefined) => boolean;
|
|
2551
|
-
|
|
2552
|
-
|
|
3149
|
+
checked: () => any;
|
|
3150
|
+
selected: () => any;
|
|
2553
3151
|
disabled: () => string | null;
|
|
3152
|
+
readonly: () => any;
|
|
2554
3153
|
role: () => string | null;
|
|
3154
|
+
value: () => string | null;
|
|
2555
3155
|
label: () => string | null | undefined;
|
|
3156
|
+
title: () => string | null | undefined;
|
|
3157
|
+
children: (selector: string) => Element[];
|
|
3158
|
+
parents: (selector: string) => ParentNode[];
|
|
3159
|
+
} & {
|
|
3160
|
+
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3161
|
+
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3162
|
+
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3163
|
+
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3164
|
+
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3165
|
+
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3166
|
+
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3167
|
+
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3168
|
+
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3169
|
+
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3170
|
+
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3171
|
+
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3172
|
+
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3173
|
+
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3174
|
+
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3175
|
+
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3176
|
+
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3177
|
+
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3178
|
+
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3179
|
+
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3180
|
+
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3181
|
+
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3182
|
+
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3183
|
+
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3184
|
+
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3185
|
+
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3186
|
+
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3187
|
+
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3188
|
+
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3189
|
+
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3190
|
+
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3191
|
+
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3192
|
+
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3193
|
+
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3194
|
+
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3195
|
+
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3196
|
+
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3197
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3198
|
+
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3199
|
+
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3200
|
+
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3201
|
+
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3202
|
+
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3203
|
+
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3204
|
+
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3205
|
+
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3206
|
+
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3207
|
+
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3208
|
+
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3209
|
+
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3210
|
+
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3211
|
+
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3212
|
+
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3213
|
+
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3214
|
+
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3215
|
+
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3216
|
+
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3217
|
+
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3218
|
+
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3219
|
+
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3220
|
+
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3221
|
+
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3222
|
+
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3223
|
+
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3224
|
+
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3225
|
+
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3226
|
+
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3227
|
+
} & {
|
|
3228
|
+
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<void | Event>;
|
|
3229
|
+
} & {
|
|
3230
|
+
keyDown: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3231
|
+
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3232
|
+
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3233
|
+
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
3234
|
+
findTooltipContent: (...args: any[]) => any;
|
|
3235
|
+
click: (element: any, ...args: any[]) => Promise<Event>;
|
|
3236
|
+
}>>;
|
|
3237
|
+
findPageInput: (...args: any[]) => Promise<{
|
|
3238
|
+
findWithLabel: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithLabel;
|
|
3239
|
+
findWithText: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithText;
|
|
3240
|
+
findWithTitle: typeof import("@instructure/ui-test-queries/src/utils/queries").findWithTitle;
|
|
3241
|
+
findAllByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllByQuery;
|
|
3242
|
+
findByQuery: typeof import("@instructure/ui-test-queries/src/utils/queries").findByQuery;
|
|
3243
|
+
findAll: typeof import("@instructure/ui-test-queries/src/utils/queries").findAll;
|
|
3244
|
+
find: typeof import("@instructure/ui-test-queries/src/utils/queries").find;
|
|
3245
|
+
findAllFrames: typeof import("@instructure/ui-test-queries/src/utils/queries").findAllFrames;
|
|
3246
|
+
findFrame: typeof import("@instructure/ui-test-queries/src/utils/queries").findFrame;
|
|
3247
|
+
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
3248
|
+
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
3249
|
+
} & {
|
|
3250
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
3251
|
+
highlight: boolean;
|
|
3252
|
+
} | undefined) => string;
|
|
3253
|
+
visible: () => boolean;
|
|
2556
3254
|
getId: () => string;
|
|
2557
3255
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2558
3256
|
getOwnerDocument: () => Document;
|
|
2559
3257
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2560
3258
|
getTagName: () => string;
|
|
3259
|
+
tagName: () => string;
|
|
2561
3260
|
typeIn: (text: string) => Promise<void>;
|
|
3261
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2562
3262
|
getDOMNode: () => Element;
|
|
2563
3263
|
node: () => Element;
|
|
2564
3264
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2568,6 +3268,7 @@ export declare const PaginationLocator: {
|
|
|
2568
3268
|
getTextContent: () => string | null;
|
|
2569
3269
|
getParentNode: () => ParentNode | null;
|
|
2570
3270
|
parent: () => ParentNode | null;
|
|
3271
|
+
getBoundingClientRect: () => DOMRect;
|
|
2571
3272
|
rect: () => DOMRect;
|
|
2572
3273
|
hasClass: (classname: string) => boolean;
|
|
2573
3274
|
containsFocus: () => boolean;
|
|
@@ -2579,17 +3280,25 @@ export declare const PaginationLocator: {
|
|
|
2579
3280
|
exists: () => boolean;
|
|
2580
3281
|
text: () => string | null;
|
|
2581
3282
|
empty: () => boolean;
|
|
3283
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2582
3284
|
descendants: (selector: string) => Element[];
|
|
2583
3285
|
ancestors: (selector: string) => ParentNode[];
|
|
2584
3286
|
attribute: (qualifiedName: string) => string | null;
|
|
2585
3287
|
style: (property: string) => string;
|
|
2586
3288
|
classNames: () => string[];
|
|
3289
|
+
id: () => string;
|
|
3290
|
+
matches: (selector: string | undefined) => boolean;
|
|
2587
3291
|
checked: () => any;
|
|
2588
3292
|
selected: () => any;
|
|
3293
|
+
disabled: () => string | null;
|
|
2589
3294
|
readonly: () => any;
|
|
3295
|
+
role: () => string | null;
|
|
3296
|
+
value: () => string | null;
|
|
3297
|
+
label: () => string | null | undefined;
|
|
3298
|
+
title: () => string | null | undefined;
|
|
3299
|
+
children: (selector: string) => Element[];
|
|
2590
3300
|
parents: (selector: string) => ParentNode[];
|
|
2591
3301
|
} & {
|
|
2592
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2593
3302
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2594
3303
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2595
3304
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2627,6 +3336,7 @@ export declare const PaginationLocator: {
|
|
|
2627
3336
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2628
3337
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2629
3338
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
3339
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2630
3340
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2631
3341
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2632
3342
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2663,9 +3373,9 @@ export declare const PaginationLocator: {
|
|
|
2663
3373
|
keyPress: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2664
3374
|
keyUp: (whichKey?: string | number | undefined, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2665
3375
|
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
2666
|
-
|
|
2667
|
-
|
|
3376
|
+
findInput: (...args: any[]) => any;
|
|
3377
|
+
findNumberInputArrows: (...args: any[]) => any;
|
|
2668
3378
|
}>>;
|
|
2669
3379
|
}>>;
|
|
2670
|
-
} & Record<"findAllPageButtons" | "findPageButton" | "findArrowButton", (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<unknown>>;
|
|
3380
|
+
} & Record<"findAllPageButtons" | "findPageButton" | "findArrowButton" | "findPageInput", (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<unknown>>;
|
|
2671
3381
|
//# sourceMappingURL=PaginationLocator.d.ts.map
|