@instructure/ui-simple-select 10.2.3-snapshot-8 → 10.2.3-snapshot-10
Sign up to get free protection for your applications and to get access to all the features.
@@ -4,440 +4,248 @@ export declare const SimpleSelectLocator: {
|
|
4
4
|
findOptionsList: (...args: any) => Promise<any>;
|
5
5
|
};
|
6
6
|
selector: string;
|
7
|
-
query: (...args: import("@instructure/ui-test-
|
7
|
+
query: (...args: import("@instructure/ui-test-locator").QueryArguments) => Element;
|
8
8
|
queryAll: {
|
9
|
-
(element: Element, selector: string | undefined, options: import("@instructure/ui-test-
|
9
|
+
(element: Element, selector: string | undefined, options: import("@instructure/ui-test-locator").SelectorOptions): Element[];
|
10
10
|
displayName: string;
|
11
11
|
};
|
12
|
-
findAll: (...args: import("@instructure/ui-test-
|
12
|
+
findAll: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<(import("@instructure/ui-test-locator").QueriesHelpersEventsType & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
|
13
13
|
findInput: (...args: any) => Promise<any>;
|
14
14
|
findOptionsList: (...args: any) => Promise<any>;
|
15
15
|
}>)[]>;
|
16
|
-
find: (...args: import("@instructure/ui-test-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
16
|
+
find: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
|
17
|
+
copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
18
|
+
cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
19
|
+
paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
20
|
+
compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
21
|
+
compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
22
|
+
compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
23
|
+
focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
24
|
+
focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
25
|
+
focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
26
|
+
change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
27
|
+
beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
28
|
+
input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
29
|
+
invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
30
|
+
submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
31
|
+
click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
32
|
+
contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
33
|
+
dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
34
|
+
drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
35
|
+
dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
36
|
+
dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
37
|
+
dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
38
|
+
dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
39
|
+
dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
40
|
+
dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
41
|
+
drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
42
|
+
mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
43
|
+
mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
44
|
+
mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
45
|
+
mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
46
|
+
mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
47
|
+
mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
48
|
+
mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
49
|
+
select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
50
|
+
touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
51
|
+
touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
52
|
+
touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
53
|
+
touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
54
|
+
scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
55
|
+
wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
56
|
+
abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
57
|
+
canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
58
|
+
canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
59
|
+
durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
60
|
+
emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
61
|
+
encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
62
|
+
ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
63
|
+
loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
64
|
+
loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
65
|
+
loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
66
|
+
pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
67
|
+
play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
68
|
+
playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
69
|
+
progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
70
|
+
rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
71
|
+
seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
72
|
+
seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
73
|
+
stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
74
|
+
suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
75
|
+
timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
76
|
+
volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
77
|
+
waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
78
|
+
load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
79
|
+
error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
80
|
+
animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
81
|
+
animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
82
|
+
animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
83
|
+
transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
28
84
|
} & {
|
29
|
-
|
30
|
-
toString: (maxLength?: number | undefined, options?: {
|
31
|
-
highlight: boolean;
|
32
|
-
} | undefined) => string;
|
33
|
-
getId: () => string;
|
34
|
-
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
35
|
-
getOwnerDocument: () => Document;
|
36
|
-
getComputedStyle: () => CSSStyleDeclaration;
|
37
|
-
getTagName: () => string;
|
38
|
-
tagName: () => string;
|
39
|
-
typeIn: (text: string) => Promise<void>;
|
40
|
-
getAttribute: (qualifiedName: string) => string | null;
|
41
|
-
getDOMNode: () => Element;
|
42
|
-
node: () => Element;
|
43
|
-
debug: (maxLength?: number | undefined, options?: {
|
44
|
-
highlight: boolean;
|
45
|
-
} | undefined) => void;
|
46
|
-
accessible: (options?: import("@instructure/ui-axe-check").AxeCheckOptions | undefined) => Promise<true | Error>;
|
47
|
-
getTextContent: () => string | null;
|
48
|
-
getParentNode: () => ParentNode | null;
|
49
|
-
parent: () => ParentNode | null;
|
50
|
-
getBoundingClientRect: () => DOMRect;
|
51
|
-
rect: () => DOMRect;
|
52
|
-
hasClass: (classname: string) => boolean;
|
53
|
-
containsFocus: () => boolean;
|
54
|
-
focused: () => boolean;
|
55
|
-
focusable: () => boolean;
|
56
|
-
tabbable: () => boolean;
|
57
|
-
clickable: () => boolean;
|
58
|
-
onscreen: () => boolean;
|
59
|
-
exists: () => boolean;
|
60
|
-
text: () => string | null;
|
61
|
-
empty: () => boolean;
|
62
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
63
|
-
descendants: (selector: string) => Element[];
|
64
|
-
ancestors: (selector: string) => ParentNode[];
|
65
|
-
attribute: (qualifiedName: string) => string | null;
|
66
|
-
style: (property: string) => string;
|
67
|
-
classNames: () => string[];
|
68
|
-
id: () => string;
|
69
|
-
matches: (selector: string | undefined) => boolean;
|
70
|
-
checked: () => any;
|
71
|
-
selected: () => any;
|
72
|
-
disabled: () => string | null;
|
73
|
-
readonly: () => any;
|
74
|
-
role: () => string | null;
|
75
|
-
value: () => string | null;
|
76
|
-
label: () => string | null | undefined;
|
77
|
-
title: () => string | null | undefined;
|
78
|
-
children: (selector: string) => Element[];
|
79
|
-
parents: (selector: string) => ParentNode[];
|
85
|
+
blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
80
86
|
} & {
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
86
|
-
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
87
|
-
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
88
|
-
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
89
|
-
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
90
|
-
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
91
|
-
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
92
|
-
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
93
|
-
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
94
|
-
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
95
|
-
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
96
|
-
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
97
|
-
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
98
|
-
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
99
|
-
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
100
|
-
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
101
|
-
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
102
|
-
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
103
|
-
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
104
|
-
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
105
|
-
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
106
|
-
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
107
|
-
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
108
|
-
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
109
|
-
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
110
|
-
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
111
|
-
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
112
|
-
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
113
|
-
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
114
|
-
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
115
|
-
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
116
|
-
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
117
|
-
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
118
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
119
|
-
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
120
|
-
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
121
|
-
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
122
|
-
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
123
|
-
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
124
|
-
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
125
|
-
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
126
|
-
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
127
|
-
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
128
|
-
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
129
|
-
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
130
|
-
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
131
|
-
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
132
|
-
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
133
|
-
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
134
|
-
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
135
|
-
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
136
|
-
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
137
|
-
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
138
|
-
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
139
|
-
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
140
|
-
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
141
|
-
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
142
|
-
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
143
|
-
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
144
|
-
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
145
|
-
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
146
|
-
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
147
|
-
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
148
|
-
} & {
|
149
|
-
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
150
|
-
} & {
|
151
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
152
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
153
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
154
|
-
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
87
|
+
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
88
|
+
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
89
|
+
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
90
|
+
} & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
|
155
91
|
findInput: (...args: any) => Promise<any>;
|
156
92
|
findOptionsList: (...args: any) => Promise<any>;
|
157
93
|
}>>;
|
158
|
-
findWithText: (...args: import("@instructure/ui-test-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
94
|
+
findWithText: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
|
95
|
+
copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
96
|
+
cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
97
|
+
paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
98
|
+
compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
99
|
+
compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
100
|
+
compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
101
|
+
focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
102
|
+
focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
103
|
+
focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
104
|
+
change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
105
|
+
beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
106
|
+
input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
107
|
+
invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
108
|
+
submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
109
|
+
click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
110
|
+
contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
111
|
+
dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
112
|
+
drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
113
|
+
dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
114
|
+
dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
115
|
+
dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
116
|
+
dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
117
|
+
dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
118
|
+
dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
119
|
+
drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
120
|
+
mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
121
|
+
mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
122
|
+
mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
123
|
+
mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
124
|
+
mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
125
|
+
mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
126
|
+
mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
127
|
+
select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
128
|
+
touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
129
|
+
touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
130
|
+
touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
131
|
+
touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
132
|
+
scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
133
|
+
wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
134
|
+
abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
135
|
+
canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
136
|
+
canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
137
|
+
durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
138
|
+
emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
139
|
+
encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
140
|
+
ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
141
|
+
loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
142
|
+
loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
143
|
+
loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
144
|
+
pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
145
|
+
play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
146
|
+
playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
147
|
+
progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
148
|
+
rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
149
|
+
seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
150
|
+
seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
151
|
+
stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
152
|
+
suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
153
|
+
timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
154
|
+
volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
155
|
+
waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
156
|
+
load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
157
|
+
error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
158
|
+
animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
159
|
+
animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
160
|
+
animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
161
|
+
transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
222
162
|
} & {
|
223
|
-
|
224
|
-
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
225
|
-
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
226
|
-
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
227
|
-
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
228
|
-
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
229
|
-
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
230
|
-
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
231
|
-
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
232
|
-
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
233
|
-
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
234
|
-
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
235
|
-
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
236
|
-
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
237
|
-
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
238
|
-
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
239
|
-
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
240
|
-
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
241
|
-
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
242
|
-
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
243
|
-
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
244
|
-
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
245
|
-
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
246
|
-
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
247
|
-
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
248
|
-
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
249
|
-
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
250
|
-
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
251
|
-
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
252
|
-
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
253
|
-
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
254
|
-
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
255
|
-
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
256
|
-
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
257
|
-
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
258
|
-
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
259
|
-
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
260
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
261
|
-
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
262
|
-
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
263
|
-
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
264
|
-
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
265
|
-
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
266
|
-
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
267
|
-
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
268
|
-
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
269
|
-
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
270
|
-
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
271
|
-
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
272
|
-
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
273
|
-
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
274
|
-
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
275
|
-
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
276
|
-
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
277
|
-
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
278
|
-
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
279
|
-
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
280
|
-
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
281
|
-
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
282
|
-
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
283
|
-
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
284
|
-
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
285
|
-
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
286
|
-
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
287
|
-
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
288
|
-
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
289
|
-
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
163
|
+
blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
290
164
|
} & {
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
296
|
-
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
165
|
+
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
166
|
+
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
167
|
+
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
168
|
+
} & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
|
297
169
|
findInput: (...args: any) => Promise<any>;
|
298
170
|
findOptionsList: (...args: any) => Promise<any>;
|
299
171
|
}>>;
|
300
|
-
findWithLabel: (...args: import("@instructure/ui-test-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
369
|
-
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
370
|
-
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
371
|
-
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
372
|
-
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
373
|
-
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
374
|
-
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
375
|
-
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
376
|
-
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
377
|
-
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
378
|
-
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
379
|
-
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
380
|
-
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
381
|
-
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
382
|
-
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
383
|
-
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
384
|
-
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
385
|
-
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
386
|
-
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
387
|
-
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
388
|
-
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
389
|
-
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
390
|
-
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
391
|
-
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
392
|
-
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
393
|
-
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
394
|
-
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
395
|
-
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
396
|
-
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
397
|
-
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
398
|
-
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
399
|
-
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
400
|
-
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
401
|
-
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
402
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
403
|
-
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
404
|
-
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
405
|
-
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
406
|
-
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
407
|
-
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
408
|
-
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
409
|
-
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
410
|
-
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
411
|
-
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
412
|
-
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
413
|
-
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
414
|
-
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
415
|
-
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
416
|
-
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
417
|
-
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
418
|
-
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
419
|
-
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
420
|
-
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
421
|
-
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
422
|
-
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
423
|
-
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
424
|
-
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
425
|
-
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
426
|
-
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
427
|
-
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
428
|
-
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
429
|
-
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
430
|
-
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
431
|
-
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
172
|
+
findWithLabel: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
|
173
|
+
copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
174
|
+
cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
175
|
+
paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
176
|
+
compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
177
|
+
compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
178
|
+
compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
179
|
+
focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
180
|
+
focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
181
|
+
focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
182
|
+
change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
183
|
+
beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
184
|
+
input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
185
|
+
invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
186
|
+
submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
187
|
+
click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
188
|
+
contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
189
|
+
dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
190
|
+
drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
191
|
+
dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
192
|
+
dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
193
|
+
dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
194
|
+
dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
195
|
+
dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
196
|
+
dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
197
|
+
drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
198
|
+
mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
199
|
+
mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
200
|
+
mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
201
|
+
mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
202
|
+
mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
203
|
+
mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
204
|
+
mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
205
|
+
select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
206
|
+
touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
207
|
+
touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
208
|
+
touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
209
|
+
touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
210
|
+
scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
211
|
+
wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
212
|
+
abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
213
|
+
canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
214
|
+
canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
215
|
+
durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
216
|
+
emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
217
|
+
encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
218
|
+
ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
219
|
+
loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
220
|
+
loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
221
|
+
loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
222
|
+
pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
223
|
+
play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
224
|
+
playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
225
|
+
progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
226
|
+
rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
227
|
+
seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
228
|
+
seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
229
|
+
stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
230
|
+
suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
231
|
+
timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
232
|
+
volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
233
|
+
waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
234
|
+
load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
235
|
+
error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
236
|
+
animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
237
|
+
animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
238
|
+
animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
239
|
+
transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
432
240
|
} & {
|
433
|
-
blur: (init?: import("@instructure/ui-test-
|
241
|
+
blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
434
242
|
} & {
|
435
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-
|
436
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-
|
437
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-
|
438
|
-
} & import("@instructure/ui-test-
|
243
|
+
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
244
|
+
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
245
|
+
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
246
|
+
} & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
|
439
247
|
findInput: (...args: any) => Promise<any>;
|
440
248
|
findOptionsList: (...args: any) => Promise<any>;
|
441
249
|
}>>;
|
442
|
-
} & Record<"findInput" | "findOptionsList", (...args: import("@instructure/ui-test-
|
250
|
+
} & Record<"findInput" | "findOptionsList", (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<unknown>>;
|
443
251
|
//# sourceMappingURL=SimpleSelectLocator.d.ts.map
|