@vonage/vivid-test-utils 5.7.0 → 5.9.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/dist/components.generated-BM4vEWGz.cjs +1 -0
- package/dist/{components.generated-C5nSqcG_.js → components.generated-DaiiXLEV.js} +1227 -984
- package/dist/components.generated.d.ts +233 -1
- package/dist/cypress.cjs +1 -1
- package/dist/cypress.js +1 -1
- package/dist/dom.cjs +1 -1
- package/dist/dom.js +1 -1
- package/dist/playwright.cjs +1 -1
- package/dist/playwright.js +1 -1
- package/package.json +5 -5
- package/dist/components.generated-BjcfXR52.cjs +0 -1
|
@@ -5,7 +5,7 @@ class n {
|
|
|
5
5
|
unwrap() {
|
|
6
6
|
return this.locator;
|
|
7
7
|
}
|
|
8
|
-
assert(r, s,
|
|
8
|
+
assert(r, s, e, i) {
|
|
9
9
|
return this.ctx.driver.expectEq(
|
|
10
10
|
{
|
|
11
11
|
type: "eval",
|
|
@@ -13,7 +13,7 @@ class n {
|
|
|
13
13
|
fn: s,
|
|
14
14
|
arg: i
|
|
15
15
|
},
|
|
16
|
-
|
|
16
|
+
e,
|
|
17
17
|
`Failed to assert condition: "${r}"`
|
|
18
18
|
);
|
|
19
19
|
}
|
|
@@ -21,7 +21,7 @@ class n {
|
|
|
21
21
|
class a {
|
|
22
22
|
constructor(r) {
|
|
23
23
|
this.ctx = r, this.all = this.ctx.driver.wrapSelector(
|
|
24
|
-
() => new
|
|
24
|
+
() => new Ie(
|
|
25
25
|
this.ctx,
|
|
26
26
|
this,
|
|
27
27
|
this.ctx.driver.querySelectorAll(
|
|
@@ -32,187 +32,193 @@ class a {
|
|
|
32
32
|
);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
class
|
|
36
|
-
constructor(r, s,
|
|
37
|
-
this.ctx = r, this.component = s, this.locator =
|
|
35
|
+
class Ie {
|
|
36
|
+
constructor(r, s, e) {
|
|
37
|
+
this.ctx = r, this.component = s, this.locator = e, this.type = "collection", this.nth = this.ctx.driver.wrapSelector(
|
|
38
38
|
(i) => this.component.wrap(this.ctx.driver.nth(this.locator, i))
|
|
39
39
|
);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
-
class
|
|
42
|
+
class ge {
|
|
43
43
|
constructor(r, s) {
|
|
44
44
|
this.ctx = r, this.locator = s, this.toHaveCount = this.ctx.driver.wrapExpect(
|
|
45
|
-
(
|
|
45
|
+
(e) => this.ctx.driver.expectEq(
|
|
46
46
|
{
|
|
47
47
|
el: this.locator.locator,
|
|
48
48
|
// FIXME: retrieve the locator correctly
|
|
49
49
|
type: "count"
|
|
50
50
|
},
|
|
51
|
-
|
|
52
|
-
`toHaveCount(${
|
|
51
|
+
e,
|
|
52
|
+
`toHaveCount(${e})`
|
|
53
53
|
)
|
|
54
54
|
);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
const
|
|
58
|
-
([s,
|
|
59
|
-
|
|
57
|
+
const Ae = (t) => t.replace(/\\/g, "\\\\").replace(/"/g, '\\"').replace(/'/g, "\\'"), A = (t, r) => r.map(
|
|
58
|
+
([s, e]) => `[data-vvd-component="${t}"][${s}="${Ae(
|
|
59
|
+
e
|
|
60
60
|
)}"]`
|
|
61
61
|
).join(",");
|
|
62
|
-
function h(
|
|
62
|
+
function h(t) {
|
|
63
63
|
return this.wrap(
|
|
64
64
|
this.ctx.driver.querySelector(
|
|
65
65
|
this.ctx.rootLocator,
|
|
66
66
|
A(this.componentInfo.name, [
|
|
67
|
-
["data-testid",
|
|
68
|
-
["data-test-id",
|
|
69
|
-
["data-cy",
|
|
67
|
+
["data-testid", t],
|
|
68
|
+
["data-test-id", t],
|
|
69
|
+
["data-cy", t]
|
|
70
70
|
])
|
|
71
71
|
)
|
|
72
72
|
);
|
|
73
73
|
}
|
|
74
|
-
function x(
|
|
74
|
+
function x(t) {
|
|
75
75
|
return this.wrap(
|
|
76
76
|
this.ctx.driver.querySelector(
|
|
77
77
|
this.ctx.rootLocator,
|
|
78
78
|
A(this.componentInfo.name, [
|
|
79
|
-
["label",
|
|
80
|
-
["aria-label",
|
|
81
|
-
["data-vvd-aria-label",
|
|
79
|
+
["label", t],
|
|
80
|
+
["aria-label", t],
|
|
81
|
+
["data-vvd-aria-label", t]
|
|
82
82
|
])
|
|
83
83
|
)
|
|
84
84
|
);
|
|
85
85
|
}
|
|
86
|
-
function
|
|
86
|
+
function He(t) {
|
|
87
87
|
return this.wrap(
|
|
88
88
|
this.ctx.driver.querySelector(
|
|
89
89
|
this.ctx.rootLocator,
|
|
90
|
-
A(this.componentInfo.name, [["heading",
|
|
90
|
+
A(this.componentInfo.name, [["heading", t]])
|
|
91
91
|
)
|
|
92
92
|
);
|
|
93
93
|
}
|
|
94
|
-
function
|
|
94
|
+
function k(t) {
|
|
95
95
|
return this.wrap(
|
|
96
96
|
this.ctx.driver.querySelector(
|
|
97
97
|
this.ctx.rootLocator,
|
|
98
|
-
A(this.componentInfo.name, [["headline",
|
|
98
|
+
A(this.componentInfo.name, [["headline", t]])
|
|
99
99
|
)
|
|
100
100
|
);
|
|
101
101
|
}
|
|
102
|
-
function B(
|
|
102
|
+
function B(t) {
|
|
103
103
|
return this.wrap(
|
|
104
104
|
this.ctx.driver.querySelector(
|
|
105
105
|
this.ctx.rootLocator,
|
|
106
|
-
A(this.componentInfo.name, [["text",
|
|
106
|
+
A(this.componentInfo.name, [["text", t]])
|
|
107
107
|
)
|
|
108
108
|
);
|
|
109
109
|
}
|
|
110
|
-
const f = (
|
|
111
|
-
if (!
|
|
110
|
+
const f = (t) => {
|
|
111
|
+
if (!t.length)
|
|
112
112
|
return;
|
|
113
|
-
const r =
|
|
114
|
-
return
|
|
113
|
+
const r = t[0], s = t.slice(1), e = r();
|
|
114
|
+
return e instanceof Promise ? e.then(() => f(s)) : f(s);
|
|
115
115
|
};
|
|
116
|
-
function I(
|
|
117
|
-
return
|
|
116
|
+
function I(t) {
|
|
117
|
+
return t.checked;
|
|
118
118
|
}
|
|
119
|
-
function g(
|
|
120
|
-
return
|
|
119
|
+
function g(t) {
|
|
120
|
+
return t.indeterminate ? "indeterminate" : t.checked ? "checked" : "unchecked";
|
|
121
121
|
}
|
|
122
|
-
function m(
|
|
123
|
-
return
|
|
122
|
+
function m(t) {
|
|
123
|
+
return t.errorValidationMessage;
|
|
124
124
|
}
|
|
125
|
-
function _(
|
|
126
|
-
return
|
|
125
|
+
function _(t) {
|
|
126
|
+
return t.headline;
|
|
127
127
|
}
|
|
128
|
-
function E(
|
|
129
|
-
return
|
|
128
|
+
function E(t) {
|
|
129
|
+
return t.open;
|
|
130
130
|
}
|
|
131
|
-
function u(
|
|
132
|
-
return
|
|
131
|
+
function u(t) {
|
|
132
|
+
return t.value;
|
|
133
133
|
}
|
|
134
|
-
function z(
|
|
135
|
-
return
|
|
134
|
+
function z(t) {
|
|
135
|
+
return t.valueAsNumber;
|
|
136
136
|
}
|
|
137
|
-
function
|
|
138
|
-
return
|
|
137
|
+
function Pe(t) {
|
|
138
|
+
return t.values;
|
|
139
139
|
}
|
|
140
|
-
function
|
|
141
|
-
return
|
|
140
|
+
function $e(t) {
|
|
141
|
+
return t.selectedOptions.map((r) => r.label);
|
|
142
142
|
}
|
|
143
|
-
function
|
|
144
|
-
return
|
|
143
|
+
function G(t) {
|
|
144
|
+
return t.expanded;
|
|
145
145
|
}
|
|
146
|
-
function L(
|
|
147
|
-
return
|
|
146
|
+
function L(t) {
|
|
147
|
+
return t.active;
|
|
148
148
|
}
|
|
149
|
-
function H(
|
|
150
|
-
return
|
|
149
|
+
function H(t) {
|
|
150
|
+
return t.current;
|
|
151
151
|
}
|
|
152
|
-
function O(
|
|
153
|
-
return
|
|
152
|
+
function O(t) {
|
|
153
|
+
return t.selected;
|
|
154
154
|
}
|
|
155
|
-
function
|
|
156
|
-
return
|
|
155
|
+
function C(t) {
|
|
156
|
+
return t.disabled;
|
|
157
157
|
}
|
|
158
|
-
function
|
|
159
|
-
return [
|
|
158
|
+
function Se(t) {
|
|
159
|
+
return [t.start, t.end];
|
|
160
160
|
}
|
|
161
|
-
function
|
|
162
|
-
return [
|
|
161
|
+
function Ce(t) {
|
|
162
|
+
return [t.startAsNumber, t.endAsNumber];
|
|
163
163
|
}
|
|
164
|
-
function
|
|
165
|
-
return
|
|
164
|
+
function qe(t) {
|
|
165
|
+
return t.name;
|
|
166
166
|
}
|
|
167
|
-
function
|
|
168
|
-
return
|
|
167
|
+
function Te(t) {
|
|
168
|
+
return t.total;
|
|
169
169
|
}
|
|
170
|
-
function
|
|
171
|
-
return
|
|
170
|
+
function ke(t) {
|
|
171
|
+
return t.selectedIndex + 1 || null;
|
|
172
172
|
}
|
|
173
|
-
function w(
|
|
174
|
-
const r =
|
|
173
|
+
function w(t) {
|
|
174
|
+
const r = t.shadowRoot.querySelector("slot[name=icon]");
|
|
175
175
|
if (r) {
|
|
176
|
-
const
|
|
177
|
-
if ((
|
|
178
|
-
return
|
|
176
|
+
const e = r.assignedElements()[0];
|
|
177
|
+
if ((e == null ? void 0 : e.dataset.vvdComponent) === "icon")
|
|
178
|
+
return e.name;
|
|
179
179
|
}
|
|
180
|
-
const s =
|
|
180
|
+
const s = t.shadowRoot.querySelector(
|
|
181
181
|
'slot[name="icon"] [data-vvd-component="icon"], span.icon [data-vvd-component="icon"]'
|
|
182
182
|
);
|
|
183
183
|
return s ? s.name : null;
|
|
184
184
|
}
|
|
185
|
-
function b(
|
|
186
|
-
return this.ctx.driver.userClick(
|
|
185
|
+
function b(t) {
|
|
186
|
+
return this.ctx.driver.userClick(t());
|
|
187
187
|
}
|
|
188
|
-
function V(
|
|
189
|
-
return this.ctx.driver.userFill(
|
|
188
|
+
function V(t, r) {
|
|
189
|
+
return this.ctx.driver.userFill(t(), r);
|
|
190
190
|
}
|
|
191
|
-
function
|
|
191
|
+
function Be(t) {
|
|
192
192
|
return f([
|
|
193
|
-
() => this.ctx.driver.userFill(this.control(),
|
|
193
|
+
() => this.ctx.driver.userFill(this.control(), t),
|
|
194
194
|
() => this.ctx.driver.userBlur(this.control())
|
|
195
195
|
// Combobox only updates value on blur
|
|
196
196
|
]);
|
|
197
197
|
}
|
|
198
|
-
function W(
|
|
199
|
-
return this.ctx.driver.userClear(
|
|
198
|
+
function W(t) {
|
|
199
|
+
return this.ctx.driver.userClear(t());
|
|
200
200
|
}
|
|
201
|
-
function
|
|
201
|
+
function Ve() {
|
|
202
202
|
return f([
|
|
203
|
+
// Wait before clearing to ensure any previous operations have fully settled.
|
|
204
|
+
// This prevents a sporadic issue in Playwright Safari where the combobox will not clear
|
|
205
|
+
() => this.ctx.driver.eval(
|
|
206
|
+
this.locator,
|
|
207
|
+
() => new Promise((t) => setTimeout(t, 200))
|
|
208
|
+
),
|
|
203
209
|
() => this.ctx.driver.userClear(this.control()),
|
|
204
210
|
() => this.ctx.driver.userBlur(this.control())
|
|
205
211
|
// Combobox only updates value on blur
|
|
206
212
|
]);
|
|
207
213
|
}
|
|
208
|
-
function J(
|
|
214
|
+
function J(t) {
|
|
209
215
|
return f([
|
|
210
216
|
() => this.assert(
|
|
211
217
|
"Component is unchecked before it can be checked",
|
|
212
218
|
g,
|
|
213
219
|
"unchecked"
|
|
214
220
|
),
|
|
215
|
-
() => this.ctx.driver.userClick(
|
|
221
|
+
() => this.ctx.driver.userClick(t()),
|
|
216
222
|
() => this.assert(
|
|
217
223
|
"Component is checked after checking it",
|
|
218
224
|
g,
|
|
@@ -220,14 +226,14 @@ function J(e) {
|
|
|
220
226
|
)
|
|
221
227
|
]);
|
|
222
228
|
}
|
|
223
|
-
function K(
|
|
229
|
+
function K(t) {
|
|
224
230
|
return f([
|
|
225
231
|
() => this.assert(
|
|
226
232
|
"Component is checked before it can be unchecked",
|
|
227
233
|
g,
|
|
228
234
|
"checked"
|
|
229
235
|
),
|
|
230
|
-
() => this.ctx.driver.userClick(
|
|
236
|
+
() => this.ctx.driver.userClick(t()),
|
|
231
237
|
() => this.assert(
|
|
232
238
|
"Component is unchecked after unchecking it",
|
|
233
239
|
g,
|
|
@@ -235,22 +241,22 @@ function K(e) {
|
|
|
235
241
|
)
|
|
236
242
|
]);
|
|
237
243
|
}
|
|
238
|
-
function p(
|
|
239
|
-
return this.ctx.driver.userFocus(
|
|
244
|
+
function p(t) {
|
|
245
|
+
return this.ctx.driver.userFocus(t());
|
|
240
246
|
}
|
|
241
|
-
function d(
|
|
242
|
-
return this.ctx.driver.userBlur(
|
|
247
|
+
function d(t) {
|
|
248
|
+
return this.ctx.driver.userBlur(t());
|
|
243
249
|
}
|
|
244
|
-
function l(
|
|
245
|
-
return this.ctx.driver.userHover(
|
|
250
|
+
function l(t) {
|
|
251
|
+
return this.ctx.driver.userHover(t());
|
|
246
252
|
}
|
|
247
|
-
function D(
|
|
248
|
-
return Q.call(this, A("option", [["value",
|
|
253
|
+
function D(t) {
|
|
254
|
+
return Q.call(this, A("option", [["value", t]]));
|
|
249
255
|
}
|
|
250
|
-
function
|
|
251
|
-
return Q.call(this, A("option", [["text",
|
|
256
|
+
function R(t) {
|
|
257
|
+
return Q.call(this, A("option", [["text", t]]));
|
|
252
258
|
}
|
|
253
|
-
function Q(
|
|
259
|
+
function Q(t) {
|
|
254
260
|
return this.ctx.driver.eval(
|
|
255
261
|
this.locator,
|
|
256
262
|
(r) => r.open,
|
|
@@ -264,7 +270,7 @@ function Q(e) {
|
|
|
264
270
|
() => this.ctx.driver.expectEq(
|
|
265
271
|
{
|
|
266
272
|
type: "eval",
|
|
267
|
-
el: this.ctx.driver.querySelector(this.locator,
|
|
273
|
+
el: this.ctx.driver.querySelector(this.locator, t),
|
|
268
274
|
fn: (s) => !!s.selected
|
|
269
275
|
},
|
|
270
276
|
!1,
|
|
@@ -273,7 +279,7 @@ function Q(e) {
|
|
|
273
279
|
() => this.ctx.driver.expectEq(
|
|
274
280
|
{
|
|
275
281
|
type: "eval",
|
|
276
|
-
el: this.ctx.driver.querySelector(this.locator,
|
|
282
|
+
el: this.ctx.driver.querySelector(this.locator, t),
|
|
277
283
|
fn: (s) => !!s.disabled
|
|
278
284
|
},
|
|
279
285
|
!1,
|
|
@@ -283,13 +289,13 @@ function Q(e) {
|
|
|
283
289
|
// Note: simulate click instead of using userClick to work around Cypress bug
|
|
284
290
|
// When clicking on an option, Cypress incorrectly blurs the host, which in case of combobox closes it
|
|
285
291
|
() => this.ctx.driver.eval(
|
|
286
|
-
this.ctx.driver.querySelector(this.locator,
|
|
292
|
+
this.ctx.driver.querySelector(this.locator, t),
|
|
287
293
|
(s) => s.click()
|
|
288
294
|
),
|
|
289
295
|
() => this.ctx.driver.expectEq(
|
|
290
296
|
{
|
|
291
297
|
type: "eval",
|
|
292
|
-
el: this.ctx.driver.querySelector(this.locator,
|
|
298
|
+
el: this.ctx.driver.querySelector(this.locator, t),
|
|
293
299
|
fn: (s) => !!s.selected
|
|
294
300
|
},
|
|
295
301
|
!0,
|
|
@@ -298,16 +304,16 @@ function Q(e) {
|
|
|
298
304
|
])
|
|
299
305
|
);
|
|
300
306
|
}
|
|
301
|
-
function
|
|
302
|
-
return
|
|
307
|
+
function q(t) {
|
|
308
|
+
return t().click();
|
|
303
309
|
}
|
|
304
|
-
const P = (
|
|
305
|
-
const [r, s,
|
|
306
|
-
return `${s}/${
|
|
310
|
+
const P = (t) => {
|
|
311
|
+
const [r, s, e] = t.split("-");
|
|
312
|
+
return `${s}/${e}/${r}`;
|
|
307
313
|
};
|
|
308
|
-
function
|
|
314
|
+
function We(t) {
|
|
309
315
|
return f([
|
|
310
|
-
() => this.control().fill(P(
|
|
316
|
+
() => this.control().fill(P(t)),
|
|
311
317
|
() => this.control().blur()
|
|
312
318
|
]);
|
|
313
319
|
}
|
|
@@ -317,192 +323,192 @@ function $() {
|
|
|
317
323
|
() => this.clearButton().click()
|
|
318
324
|
]);
|
|
319
325
|
}
|
|
320
|
-
const X = (
|
|
321
|
-
const [r, s,
|
|
322
|
-
return `${i}:${s}:${
|
|
326
|
+
const X = (t) => {
|
|
327
|
+
const [r, s, e] = t.split(":"), i = +r % 12 || 12, c = +r < 12 ? "AM" : "PM";
|
|
328
|
+
return `${i}:${s}:${e} ${c}`;
|
|
323
329
|
};
|
|
324
|
-
function
|
|
330
|
+
function De(t) {
|
|
325
331
|
return f([
|
|
326
|
-
() => this.control().fill(X(
|
|
332
|
+
() => this.control().fill(X(t)),
|
|
327
333
|
() => this.control().blur()
|
|
328
334
|
]);
|
|
329
335
|
}
|
|
330
|
-
const
|
|
331
|
-
function
|
|
336
|
+
const Re = ([t, r]) => `${P(t)} – ${P(r)}`;
|
|
337
|
+
function Ge(t) {
|
|
332
338
|
return f([
|
|
333
|
-
() => this.control().fill(
|
|
339
|
+
() => this.control().fill(Re(t)),
|
|
334
340
|
() => this.control().blur()
|
|
335
341
|
]);
|
|
336
342
|
}
|
|
337
|
-
const
|
|
338
|
-
const [r, s] =
|
|
343
|
+
const Le = (t) => {
|
|
344
|
+
const [r, s] = t.split("T");
|
|
339
345
|
return `${P(r)} ${X(s)}`;
|
|
340
346
|
};
|
|
341
|
-
function
|
|
347
|
+
function Oe(t) {
|
|
342
348
|
return f([
|
|
343
|
-
() => this.control().fill(
|
|
349
|
+
() => this.control().fill(Le(t)),
|
|
344
350
|
() => this.control().blur()
|
|
345
351
|
]);
|
|
346
352
|
}
|
|
347
|
-
function
|
|
348
|
-
return this.ctx.driver.userDragSlider(this.locator,
|
|
353
|
+
function T(t, r, s) {
|
|
354
|
+
return this.ctx.driver.userDragSlider(this.locator, t(), r(), s);
|
|
349
355
|
}
|
|
350
|
-
function
|
|
356
|
+
function Fe(t) {
|
|
351
357
|
return this.ctx.driver.userClick(
|
|
352
358
|
this.ctx.driver.querySelector(
|
|
353
359
|
this.ctx.driver.enterShadow(this.locator),
|
|
354
|
-
`.vwc-pagination-button[label="${
|
|
360
|
+
`.vwc-pagination-button[label="${t + 1}"]`
|
|
355
361
|
)
|
|
356
362
|
);
|
|
357
363
|
}
|
|
358
|
-
function F(
|
|
364
|
+
function F(t) {
|
|
359
365
|
return f([
|
|
360
366
|
() => this.assert(
|
|
361
|
-
`Component is ${
|
|
367
|
+
`Component is ${t ? "collapsed" : "expanded"} before it can be ${t ? "expanded" : "collapsed"}`,
|
|
362
368
|
(r) => !!r.expanded,
|
|
363
|
-
!
|
|
369
|
+
!t
|
|
364
370
|
),
|
|
365
371
|
() => this.ctx.driver.userClick(this.button()),
|
|
366
372
|
() => this.assert(
|
|
367
|
-
`Component is ${
|
|
373
|
+
`Component is ${t ? "expanded" : "collapsed"} after ${t ? "expanding" : "collapsing"} it`,
|
|
368
374
|
(r) => !!r.expanded,
|
|
369
|
-
|
|
375
|
+
t
|
|
370
376
|
)
|
|
371
377
|
]);
|
|
372
378
|
}
|
|
373
|
-
function U(
|
|
379
|
+
function U(t) {
|
|
374
380
|
return f([
|
|
375
381
|
() => this.assert(
|
|
376
|
-
`Component is ${
|
|
382
|
+
`Component is ${t ? "closed" : "open"} before it can be ${t ? "expanded" : "collapsed"}`,
|
|
377
383
|
(r) => !!r.open,
|
|
378
|
-
!
|
|
384
|
+
!t
|
|
379
385
|
),
|
|
380
386
|
() => this.ctx.driver.userClick(this.summary()),
|
|
381
387
|
() => this.assert(
|
|
382
|
-
`Component is ${
|
|
388
|
+
`Component is ${t ? "open" : "closed"} after ${t ? "expanding" : "collapsing"} it`,
|
|
383
389
|
(r) => !!r.open,
|
|
384
|
-
|
|
390
|
+
t
|
|
385
391
|
)
|
|
386
392
|
]);
|
|
387
393
|
}
|
|
388
|
-
function M(
|
|
394
|
+
function M(t) {
|
|
389
395
|
return f([
|
|
390
396
|
() => this.ctx.driver.userClick(this.base()),
|
|
391
397
|
() => this.assert(
|
|
392
|
-
`Component is ${
|
|
398
|
+
`Component is ${t ? "selected" : "unselected"} after ${t ? "selecting" : "unselecting"} it`,
|
|
393
399
|
(r) => !!r.selected,
|
|
394
|
-
|
|
400
|
+
t
|
|
395
401
|
)
|
|
396
402
|
]);
|
|
397
403
|
}
|
|
398
|
-
function
|
|
399
|
-
return this.ctx.driver.querySelector(this.unwrap(),
|
|
404
|
+
function Ue(t) {
|
|
405
|
+
return this.ctx.driver.querySelector(this.unwrap(), t);
|
|
400
406
|
}
|
|
401
|
-
function v(
|
|
407
|
+
function v(t) {
|
|
402
408
|
return this.ctx.driver.querySelector(
|
|
403
409
|
this.ctx.driver.enterShadow(this.unwrap()),
|
|
404
|
-
|
|
410
|
+
t
|
|
405
411
|
);
|
|
406
412
|
}
|
|
407
|
-
function
|
|
413
|
+
function Me(t, r) {
|
|
408
414
|
return this.ctx.driver.querySelector(
|
|
409
415
|
this.ctx.driver.enterShadow(
|
|
410
416
|
this.ctx.driver.querySelector(
|
|
411
417
|
this.ctx.driver.enterShadow(this.unwrap()),
|
|
412
|
-
|
|
418
|
+
t
|
|
413
419
|
)
|
|
414
420
|
),
|
|
415
421
|
r
|
|
416
422
|
);
|
|
417
423
|
}
|
|
418
|
-
function y(
|
|
424
|
+
function y(t) {
|
|
419
425
|
return new at(
|
|
420
426
|
this.ctx,
|
|
421
427
|
this.ctx.driver.querySelector(
|
|
422
428
|
this.ctx.driver.enterShadow(this.unwrap()),
|
|
423
|
-
|
|
429
|
+
t
|
|
424
430
|
)
|
|
425
431
|
);
|
|
426
432
|
}
|
|
427
|
-
function
|
|
428
|
-
return new
|
|
433
|
+
function S(t) {
|
|
434
|
+
return new ue(
|
|
429
435
|
this.ctx,
|
|
430
436
|
this.ctx.driver.querySelector(
|
|
431
437
|
this.ctx.driver.enterShadow(this.unwrap()),
|
|
432
|
-
|
|
438
|
+
t
|
|
433
439
|
)
|
|
434
440
|
);
|
|
435
441
|
}
|
|
436
442
|
const Y = {
|
|
437
443
|
name: "accordion"
|
|
438
444
|
};
|
|
439
|
-
class
|
|
445
|
+
class je extends n {
|
|
440
446
|
constructor() {
|
|
441
447
|
super(...arguments), this.type = "accordion", this.componentInfo = Y, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
442
448
|
}
|
|
443
449
|
}
|
|
444
|
-
class
|
|
450
|
+
class _e extends a {
|
|
445
451
|
constructor() {
|
|
446
452
|
super(...arguments), this.componentInfo = Y, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
447
453
|
}
|
|
448
454
|
wrap(r) {
|
|
449
|
-
return new
|
|
455
|
+
return new je(this.ctx, r);
|
|
450
456
|
}
|
|
451
457
|
}
|
|
452
|
-
class
|
|
458
|
+
class ze {
|
|
453
459
|
constructor(r, s) {
|
|
454
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
460
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
455
461
|
{
|
|
456
462
|
type: "eval",
|
|
457
463
|
el: this.wrapper.unwrap(),
|
|
458
464
|
fn: (c, o) => c[o],
|
|
459
|
-
arg:
|
|
465
|
+
arg: e
|
|
460
466
|
},
|
|
461
467
|
i,
|
|
462
|
-
`toHaveProp("${
|
|
468
|
+
`toHaveProp("${e}", ${i})`
|
|
463
469
|
));
|
|
464
470
|
}
|
|
465
471
|
}
|
|
466
472
|
const Z = {
|
|
467
473
|
name: "accordion-item"
|
|
468
474
|
};
|
|
469
|
-
class
|
|
475
|
+
class Je extends n {
|
|
470
476
|
constructor() {
|
|
471
477
|
super(...arguments), this.type = "accordionItem", this.componentInfo = Z, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.expand = this.ctx.driver.wrapAction(F.bind(this, !0)), this.collapse = this.ctx.driver.wrapAction(F.bind(this, !1)), this.button = v.bind(this, ".heading-button");
|
|
472
478
|
}
|
|
473
479
|
}
|
|
474
|
-
class
|
|
480
|
+
class Ke extends a {
|
|
475
481
|
constructor() {
|
|
476
|
-
super(...arguments), this.componentInfo = Z, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byHeading = this.ctx.driver.wrapSelector(
|
|
482
|
+
super(...arguments), this.componentInfo = Z, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byHeading = this.ctx.driver.wrapSelector(He.bind(this));
|
|
477
483
|
}
|
|
478
484
|
wrap(r) {
|
|
479
|
-
return new
|
|
485
|
+
return new Je(this.ctx, r);
|
|
480
486
|
}
|
|
481
487
|
}
|
|
482
|
-
class
|
|
488
|
+
class Qe {
|
|
483
489
|
constructor(r, s) {
|
|
484
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
490
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
485
491
|
{
|
|
486
492
|
type: "eval",
|
|
487
493
|
el: this.wrapper.unwrap(),
|
|
488
494
|
fn: (c, o) => c[o],
|
|
489
|
-
arg:
|
|
495
|
+
arg: e
|
|
490
496
|
},
|
|
491
497
|
i,
|
|
492
|
-
`toHaveProp("${
|
|
493
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
498
|
+
`toHaveProp("${e}", ${i})`
|
|
499
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
494
500
|
{
|
|
495
501
|
type: "eval",
|
|
496
502
|
el: this.wrapper.unwrap(),
|
|
497
503
|
fn: w
|
|
498
504
|
},
|
|
499
|
-
|
|
505
|
+
e,
|
|
500
506
|
"toHaveIcon(${value})"
|
|
501
507
|
)), this.toBeExpanded = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
502
508
|
{
|
|
503
509
|
type: "eval",
|
|
504
510
|
el: this.wrapper.unwrap(),
|
|
505
|
-
fn:
|
|
511
|
+
fn: G
|
|
506
512
|
},
|
|
507
513
|
!0,
|
|
508
514
|
"toBeExpanded()"
|
|
@@ -510,7 +516,7 @@ class Oe {
|
|
|
510
516
|
{
|
|
511
517
|
type: "eval",
|
|
512
518
|
el: this.wrapper.unwrap(),
|
|
513
|
-
fn:
|
|
519
|
+
fn: G
|
|
514
520
|
},
|
|
515
521
|
!1,
|
|
516
522
|
"toBeCollapsed()"
|
|
@@ -520,67 +526,67 @@ class Oe {
|
|
|
520
526
|
const N = {
|
|
521
527
|
name: "action-group"
|
|
522
528
|
};
|
|
523
|
-
class
|
|
529
|
+
class Xe extends n {
|
|
524
530
|
constructor() {
|
|
525
531
|
super(...arguments), this.type = "actionGroup", this.componentInfo = N, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
526
532
|
}
|
|
527
533
|
}
|
|
528
|
-
class
|
|
534
|
+
class Ye extends a {
|
|
529
535
|
constructor() {
|
|
530
536
|
super(...arguments), this.componentInfo = N, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
531
537
|
}
|
|
532
538
|
wrap(r) {
|
|
533
|
-
return new
|
|
539
|
+
return new Xe(this.ctx, r);
|
|
534
540
|
}
|
|
535
541
|
}
|
|
536
|
-
class
|
|
542
|
+
class Ze {
|
|
537
543
|
constructor(r, s) {
|
|
538
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
544
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
539
545
|
{
|
|
540
546
|
type: "eval",
|
|
541
547
|
el: this.wrapper.unwrap(),
|
|
542
548
|
fn: (c, o) => c[o],
|
|
543
|
-
arg:
|
|
549
|
+
arg: e
|
|
544
550
|
},
|
|
545
551
|
i,
|
|
546
|
-
`toHaveProp("${
|
|
552
|
+
`toHaveProp("${e}", ${i})`
|
|
547
553
|
));
|
|
548
554
|
}
|
|
549
555
|
}
|
|
550
556
|
const tt = {
|
|
551
557
|
name: "alert"
|
|
552
558
|
};
|
|
553
|
-
class
|
|
559
|
+
class Ne extends n {
|
|
554
560
|
constructor() {
|
|
555
561
|
super(...arguments), this.type = "alert", this.componentInfo = tt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
556
562
|
}
|
|
557
563
|
}
|
|
558
|
-
class
|
|
564
|
+
class tr extends a {
|
|
559
565
|
constructor() {
|
|
560
|
-
super(...arguments), this.componentInfo = tt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byHeadline = this.ctx.driver.wrapSelector(
|
|
566
|
+
super(...arguments), this.componentInfo = tt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byHeadline = this.ctx.driver.wrapSelector(k.bind(this));
|
|
561
567
|
}
|
|
562
568
|
wrap(r) {
|
|
563
|
-
return new
|
|
569
|
+
return new Ne(this.ctx, r);
|
|
564
570
|
}
|
|
565
571
|
}
|
|
566
|
-
class
|
|
572
|
+
class er {
|
|
567
573
|
constructor(r, s) {
|
|
568
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
574
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
569
575
|
{
|
|
570
576
|
type: "eval",
|
|
571
577
|
el: this.wrapper.unwrap(),
|
|
572
578
|
fn: (c, o) => c[o],
|
|
573
|
-
arg:
|
|
579
|
+
arg: e
|
|
574
580
|
},
|
|
575
581
|
i,
|
|
576
|
-
`toHaveProp("${
|
|
577
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
582
|
+
`toHaveProp("${e}", ${i})`
|
|
583
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
578
584
|
{
|
|
579
585
|
type: "eval",
|
|
580
586
|
el: this.wrapper.unwrap(),
|
|
581
587
|
fn: w
|
|
582
588
|
},
|
|
583
|
-
|
|
589
|
+
e,
|
|
584
590
|
"toHaveIcon(${value})"
|
|
585
591
|
)), this.toBeOpen = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
586
592
|
{
|
|
@@ -604,97 +610,97 @@ class ze {
|
|
|
604
610
|
const et = {
|
|
605
611
|
name: "audio-player"
|
|
606
612
|
};
|
|
607
|
-
class
|
|
613
|
+
class rr extends n {
|
|
608
614
|
constructor() {
|
|
609
615
|
super(...arguments), this.type = "audioPlayer", this.componentInfo = et, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
610
616
|
}
|
|
611
617
|
}
|
|
612
|
-
class
|
|
618
|
+
class ir extends a {
|
|
613
619
|
constructor() {
|
|
614
620
|
super(...arguments), this.componentInfo = et, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
615
621
|
}
|
|
616
622
|
wrap(r) {
|
|
617
|
-
return new
|
|
623
|
+
return new rr(this.ctx, r);
|
|
618
624
|
}
|
|
619
625
|
}
|
|
620
|
-
class
|
|
626
|
+
class sr {
|
|
621
627
|
constructor(r, s) {
|
|
622
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
628
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
623
629
|
{
|
|
624
630
|
type: "eval",
|
|
625
631
|
el: this.wrapper.unwrap(),
|
|
626
632
|
fn: (c, o) => c[o],
|
|
627
|
-
arg:
|
|
633
|
+
arg: e
|
|
628
634
|
},
|
|
629
635
|
i,
|
|
630
|
-
`toHaveProp("${
|
|
636
|
+
`toHaveProp("${e}", ${i})`
|
|
631
637
|
));
|
|
632
638
|
}
|
|
633
639
|
}
|
|
634
640
|
const rt = {
|
|
635
641
|
name: "avatar"
|
|
636
642
|
};
|
|
637
|
-
class
|
|
643
|
+
class cr extends n {
|
|
638
644
|
constructor() {
|
|
639
645
|
super(...arguments), this.type = "avatar", this.componentInfo = rt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
640
646
|
}
|
|
641
647
|
}
|
|
642
|
-
class
|
|
648
|
+
class or extends a {
|
|
643
649
|
constructor() {
|
|
644
650
|
super(...arguments), this.componentInfo = rt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
645
651
|
}
|
|
646
652
|
wrap(r) {
|
|
647
|
-
return new
|
|
653
|
+
return new cr(this.ctx, r);
|
|
648
654
|
}
|
|
649
655
|
}
|
|
650
|
-
class
|
|
656
|
+
class nr {
|
|
651
657
|
constructor(r, s) {
|
|
652
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
658
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
653
659
|
{
|
|
654
660
|
type: "eval",
|
|
655
661
|
el: this.wrapper.unwrap(),
|
|
656
662
|
fn: (c, o) => c[o],
|
|
657
|
-
arg:
|
|
663
|
+
arg: e
|
|
658
664
|
},
|
|
659
665
|
i,
|
|
660
|
-
`toHaveProp("${
|
|
666
|
+
`toHaveProp("${e}", ${i})`
|
|
661
667
|
));
|
|
662
668
|
}
|
|
663
669
|
}
|
|
664
670
|
const it = {
|
|
665
671
|
name: "badge"
|
|
666
672
|
};
|
|
667
|
-
class
|
|
673
|
+
class ar extends n {
|
|
668
674
|
constructor() {
|
|
669
675
|
super(...arguments), this.type = "badge", this.componentInfo = it, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
670
676
|
}
|
|
671
677
|
}
|
|
672
|
-
class
|
|
678
|
+
class hr extends a {
|
|
673
679
|
constructor() {
|
|
674
680
|
super(...arguments), this.componentInfo = it, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
675
681
|
}
|
|
676
682
|
wrap(r) {
|
|
677
|
-
return new
|
|
683
|
+
return new ar(this.ctx, r);
|
|
678
684
|
}
|
|
679
685
|
}
|
|
680
|
-
class
|
|
686
|
+
class pr {
|
|
681
687
|
constructor(r, s) {
|
|
682
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
688
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
683
689
|
{
|
|
684
690
|
type: "eval",
|
|
685
691
|
el: this.wrapper.unwrap(),
|
|
686
692
|
fn: (c, o) => c[o],
|
|
687
|
-
arg:
|
|
693
|
+
arg: e
|
|
688
694
|
},
|
|
689
695
|
i,
|
|
690
|
-
`toHaveProp("${
|
|
691
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
696
|
+
`toHaveProp("${e}", ${i})`
|
|
697
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
692
698
|
{
|
|
693
699
|
type: "eval",
|
|
694
700
|
el: this.wrapper.unwrap(),
|
|
695
701
|
fn: w
|
|
696
702
|
},
|
|
697
|
-
|
|
703
|
+
e,
|
|
698
704
|
"toHaveIcon(${value})"
|
|
699
705
|
));
|
|
700
706
|
}
|
|
@@ -702,37 +708,37 @@ class er {
|
|
|
702
708
|
const st = {
|
|
703
709
|
name: "banner"
|
|
704
710
|
};
|
|
705
|
-
class
|
|
711
|
+
class dr extends n {
|
|
706
712
|
constructor() {
|
|
707
|
-
super(...arguments), this.type = "banner", this.componentInfo = st, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.dismiss = this.ctx.driver.wrapAction(
|
|
713
|
+
super(...arguments), this.type = "banner", this.componentInfo = st, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.dismiss = this.ctx.driver.wrapAction(q.bind(this, () => this.dismissButton())), this.dismissButton = y.bind(this, ".dismiss-button");
|
|
708
714
|
}
|
|
709
715
|
}
|
|
710
|
-
class
|
|
716
|
+
class lr extends a {
|
|
711
717
|
constructor() {
|
|
712
718
|
super(...arguments), this.componentInfo = st, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byText = this.ctx.driver.wrapSelector(B.bind(this));
|
|
713
719
|
}
|
|
714
720
|
wrap(r) {
|
|
715
|
-
return new
|
|
721
|
+
return new dr(this.ctx, r);
|
|
716
722
|
}
|
|
717
723
|
}
|
|
718
|
-
class
|
|
724
|
+
class xr {
|
|
719
725
|
constructor(r, s) {
|
|
720
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
726
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
721
727
|
{
|
|
722
728
|
type: "eval",
|
|
723
729
|
el: this.wrapper.unwrap(),
|
|
724
730
|
fn: (c, o) => c[o],
|
|
725
|
-
arg:
|
|
731
|
+
arg: e
|
|
726
732
|
},
|
|
727
733
|
i,
|
|
728
|
-
`toHaveProp("${
|
|
729
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
734
|
+
`toHaveProp("${e}", ${i})`
|
|
735
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
730
736
|
{
|
|
731
737
|
type: "eval",
|
|
732
738
|
el: this.wrapper.unwrap(),
|
|
733
739
|
fn: w
|
|
734
740
|
},
|
|
735
|
-
|
|
741
|
+
e,
|
|
736
742
|
"toHaveIcon(${value})"
|
|
737
743
|
));
|
|
738
744
|
}
|
|
@@ -740,22 +746,22 @@ class sr {
|
|
|
740
746
|
const ct = {
|
|
741
747
|
name: "breadcrumb"
|
|
742
748
|
};
|
|
743
|
-
class
|
|
749
|
+
class vr extends n {
|
|
744
750
|
constructor() {
|
|
745
751
|
super(...arguments), this.type = "breadcrumb", this.componentInfo = ct, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
746
752
|
}
|
|
747
753
|
}
|
|
748
|
-
class
|
|
754
|
+
class ur extends a {
|
|
749
755
|
constructor() {
|
|
750
756
|
super(...arguments), this.componentInfo = ct, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
751
757
|
}
|
|
752
758
|
wrap(r) {
|
|
753
|
-
return new
|
|
759
|
+
return new vr(this.ctx, r);
|
|
754
760
|
}
|
|
755
761
|
}
|
|
756
|
-
class
|
|
762
|
+
class wr {
|
|
757
763
|
constructor(r, s) {
|
|
758
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = (
|
|
764
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
759
765
|
throw new Error("Component does not have props.");
|
|
760
766
|
};
|
|
761
767
|
}
|
|
@@ -763,30 +769,30 @@ class nr {
|
|
|
763
769
|
const ot = {
|
|
764
770
|
name: "breadcrumb-item"
|
|
765
771
|
};
|
|
766
|
-
class
|
|
772
|
+
class br extends n {
|
|
767
773
|
constructor() {
|
|
768
774
|
super(...arguments), this.type = "breadcrumbItem", this.componentInfo = ot, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
769
775
|
}
|
|
770
776
|
}
|
|
771
|
-
class
|
|
777
|
+
class mr extends a {
|
|
772
778
|
constructor() {
|
|
773
779
|
super(...arguments), this.componentInfo = ot, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
774
780
|
}
|
|
775
781
|
wrap(r) {
|
|
776
|
-
return new
|
|
782
|
+
return new br(this.ctx, r);
|
|
777
783
|
}
|
|
778
784
|
}
|
|
779
|
-
class
|
|
785
|
+
class fr {
|
|
780
786
|
constructor(r, s) {
|
|
781
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
787
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
782
788
|
{
|
|
783
789
|
type: "eval",
|
|
784
790
|
el: this.wrapper.unwrap(),
|
|
785
791
|
fn: (c, o) => c[o],
|
|
786
|
-
arg:
|
|
792
|
+
arg: e
|
|
787
793
|
},
|
|
788
794
|
i,
|
|
789
|
-
`toHaveProp("${
|
|
795
|
+
`toHaveProp("${e}", ${i})`
|
|
790
796
|
));
|
|
791
797
|
}
|
|
792
798
|
}
|
|
@@ -798,7 +804,7 @@ class at extends n {
|
|
|
798
804
|
super(...arguments), this.type = "button", this.componentInfo = nt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.click = this.ctx.driver.wrapAction(b.bind(this, () => this.control())), this.control = v.bind(this, "button.control");
|
|
799
805
|
}
|
|
800
806
|
}
|
|
801
|
-
class
|
|
807
|
+
class Er extends a {
|
|
802
808
|
constructor() {
|
|
803
809
|
super(...arguments), this.componentInfo = nt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
804
810
|
}
|
|
@@ -806,32 +812,32 @@ class dr extends a {
|
|
|
806
812
|
return new at(this.ctx, r);
|
|
807
813
|
}
|
|
808
814
|
}
|
|
809
|
-
class
|
|
815
|
+
class yr {
|
|
810
816
|
constructor(r, s) {
|
|
811
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
817
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
812
818
|
{
|
|
813
819
|
type: "eval",
|
|
814
820
|
el: this.wrapper.unwrap(),
|
|
815
821
|
fn: (c, o) => c[o],
|
|
816
|
-
arg:
|
|
822
|
+
arg: e
|
|
817
823
|
},
|
|
818
824
|
i,
|
|
819
|
-
`toHaveProp("${
|
|
820
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
825
|
+
`toHaveProp("${e}", ${i})`
|
|
826
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
821
827
|
{
|
|
822
828
|
type: "eval",
|
|
823
829
|
el: this.wrapper.unwrap(),
|
|
824
830
|
fn: u
|
|
825
831
|
},
|
|
826
|
-
|
|
832
|
+
e,
|
|
827
833
|
"toHaveValue(${value})"
|
|
828
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
834
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
829
835
|
{
|
|
830
836
|
type: "eval",
|
|
831
837
|
el: this.wrapper.unwrap(),
|
|
832
838
|
fn: w
|
|
833
839
|
},
|
|
834
|
-
|
|
840
|
+
e,
|
|
835
841
|
"toHaveIcon(${value})"
|
|
836
842
|
));
|
|
837
843
|
}
|
|
@@ -839,97 +845,97 @@ class lr {
|
|
|
839
845
|
const ht = {
|
|
840
846
|
name: "calendar"
|
|
841
847
|
};
|
|
842
|
-
class
|
|
848
|
+
class Ir extends n {
|
|
843
849
|
constructor() {
|
|
844
850
|
super(...arguments), this.type = "calendar", this.componentInfo = ht, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
845
851
|
}
|
|
846
852
|
}
|
|
847
|
-
class
|
|
853
|
+
class gr extends a {
|
|
848
854
|
constructor() {
|
|
849
855
|
super(...arguments), this.componentInfo = ht, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
850
856
|
}
|
|
851
857
|
wrap(r) {
|
|
852
|
-
return new
|
|
858
|
+
return new Ir(this.ctx, r);
|
|
853
859
|
}
|
|
854
860
|
}
|
|
855
|
-
class
|
|
861
|
+
class Ar {
|
|
856
862
|
constructor(r, s) {
|
|
857
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
863
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
858
864
|
{
|
|
859
865
|
type: "eval",
|
|
860
866
|
el: this.wrapper.unwrap(),
|
|
861
867
|
fn: (c, o) => c[o],
|
|
862
|
-
arg:
|
|
868
|
+
arg: e
|
|
863
869
|
},
|
|
864
870
|
i,
|
|
865
|
-
`toHaveProp("${
|
|
871
|
+
`toHaveProp("${e}", ${i})`
|
|
866
872
|
));
|
|
867
873
|
}
|
|
868
874
|
}
|
|
869
875
|
const pt = {
|
|
870
876
|
name: "calendar-event"
|
|
871
877
|
};
|
|
872
|
-
class
|
|
878
|
+
class Hr extends n {
|
|
873
879
|
constructor() {
|
|
874
880
|
super(...arguments), this.type = "calendarEvent", this.componentInfo = pt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
875
881
|
}
|
|
876
882
|
}
|
|
877
|
-
class
|
|
883
|
+
class Pr extends a {
|
|
878
884
|
constructor() {
|
|
879
885
|
super(...arguments), this.componentInfo = pt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
880
886
|
}
|
|
881
887
|
wrap(r) {
|
|
882
|
-
return new
|
|
888
|
+
return new Hr(this.ctx, r);
|
|
883
889
|
}
|
|
884
890
|
}
|
|
885
|
-
class
|
|
891
|
+
class $r {
|
|
886
892
|
constructor(r, s) {
|
|
887
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
893
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
888
894
|
{
|
|
889
895
|
type: "eval",
|
|
890
896
|
el: this.wrapper.unwrap(),
|
|
891
897
|
fn: (c, o) => c[o],
|
|
892
|
-
arg:
|
|
898
|
+
arg: e
|
|
893
899
|
},
|
|
894
900
|
i,
|
|
895
|
-
`toHaveProp("${
|
|
901
|
+
`toHaveProp("${e}", ${i})`
|
|
896
902
|
));
|
|
897
903
|
}
|
|
898
904
|
}
|
|
899
905
|
const dt = {
|
|
900
906
|
name: "card"
|
|
901
907
|
};
|
|
902
|
-
class
|
|
908
|
+
class Sr extends n {
|
|
903
909
|
constructor() {
|
|
904
910
|
super(...arguments), this.type = "card", this.componentInfo = dt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
905
911
|
}
|
|
906
912
|
}
|
|
907
|
-
class
|
|
913
|
+
class Cr extends a {
|
|
908
914
|
constructor() {
|
|
909
915
|
super(...arguments), this.componentInfo = dt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
910
916
|
}
|
|
911
917
|
wrap(r) {
|
|
912
|
-
return new
|
|
918
|
+
return new Sr(this.ctx, r);
|
|
913
919
|
}
|
|
914
920
|
}
|
|
915
|
-
class
|
|
921
|
+
class qr {
|
|
916
922
|
constructor(r, s) {
|
|
917
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
923
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
918
924
|
{
|
|
919
925
|
type: "eval",
|
|
920
926
|
el: this.wrapper.unwrap(),
|
|
921
927
|
fn: (c, o) => c[o],
|
|
922
|
-
arg:
|
|
928
|
+
arg: e
|
|
923
929
|
},
|
|
924
930
|
i,
|
|
925
|
-
`toHaveProp("${
|
|
926
|
-
)), this.toHaveHeadline = this.ctx.driver.wrapExpect((
|
|
931
|
+
`toHaveProp("${e}", ${i})`
|
|
932
|
+
)), this.toHaveHeadline = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
927
933
|
{
|
|
928
934
|
type: "eval",
|
|
929
935
|
el: this.wrapper.unwrap(),
|
|
930
936
|
fn: _
|
|
931
937
|
},
|
|
932
|
-
|
|
938
|
+
e,
|
|
933
939
|
"toHaveHeadline(${value})"
|
|
934
940
|
));
|
|
935
941
|
}
|
|
@@ -937,45 +943,45 @@ class yr {
|
|
|
937
943
|
const lt = {
|
|
938
944
|
name: "checkbox"
|
|
939
945
|
};
|
|
940
|
-
class
|
|
946
|
+
class Tr extends n {
|
|
941
947
|
constructor() {
|
|
942
948
|
super(...arguments), this.type = "checkbox", this.componentInfo = lt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.check = this.ctx.driver.wrapAction(J.bind(this, () => this.control())), this.uncheck = this.ctx.driver.wrapAction(K.bind(this, () => this.control())), this.control = v.bind(this, "div.control");
|
|
943
949
|
}
|
|
944
950
|
}
|
|
945
|
-
class
|
|
951
|
+
class kr extends a {
|
|
946
952
|
constructor() {
|
|
947
953
|
super(...arguments), this.componentInfo = lt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
948
954
|
}
|
|
949
955
|
wrap(r) {
|
|
950
|
-
return new
|
|
956
|
+
return new Tr(this.ctx, r);
|
|
951
957
|
}
|
|
952
958
|
}
|
|
953
|
-
class
|
|
959
|
+
class Br {
|
|
954
960
|
constructor(r, s) {
|
|
955
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
961
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
956
962
|
{
|
|
957
963
|
type: "eval",
|
|
958
964
|
el: this.wrapper.unwrap(),
|
|
959
965
|
fn: (c, o) => c[o],
|
|
960
|
-
arg:
|
|
966
|
+
arg: e
|
|
961
967
|
},
|
|
962
968
|
i,
|
|
963
|
-
`toHaveProp("${
|
|
964
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
969
|
+
`toHaveProp("${e}", ${i})`
|
|
970
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
965
971
|
{
|
|
966
972
|
type: "eval",
|
|
967
973
|
el: this.wrapper.unwrap(),
|
|
968
974
|
fn: m
|
|
969
975
|
},
|
|
970
|
-
|
|
976
|
+
e,
|
|
971
977
|
"toHaveVisibleError(${value})"
|
|
972
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
978
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
973
979
|
{
|
|
974
980
|
type: "eval",
|
|
975
981
|
el: this.wrapper.unwrap(),
|
|
976
982
|
fn: u
|
|
977
983
|
},
|
|
978
|
-
|
|
984
|
+
e,
|
|
979
985
|
"toHaveValue(${value})"
|
|
980
986
|
)), this.toBeChecked = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
981
987
|
{
|
|
@@ -1007,45 +1013,45 @@ class Ar {
|
|
|
1007
1013
|
const xt = {
|
|
1008
1014
|
name: "color-picker"
|
|
1009
1015
|
};
|
|
1010
|
-
class
|
|
1016
|
+
class Vr extends n {
|
|
1011
1017
|
constructor() {
|
|
1012
1018
|
super(...arguments), this.type = "colorPicker", this.componentInfo = xt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1013
1019
|
}
|
|
1014
1020
|
}
|
|
1015
|
-
class
|
|
1021
|
+
class Wr extends a {
|
|
1016
1022
|
constructor() {
|
|
1017
1023
|
super(...arguments), this.componentInfo = xt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1018
1024
|
}
|
|
1019
1025
|
wrap(r) {
|
|
1020
|
-
return new
|
|
1026
|
+
return new Vr(this.ctx, r);
|
|
1021
1027
|
}
|
|
1022
1028
|
}
|
|
1023
|
-
class
|
|
1029
|
+
class Dr {
|
|
1024
1030
|
constructor(r, s) {
|
|
1025
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1031
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1026
1032
|
{
|
|
1027
1033
|
type: "eval",
|
|
1028
1034
|
el: this.wrapper.unwrap(),
|
|
1029
1035
|
fn: (c, o) => c[o],
|
|
1030
|
-
arg:
|
|
1036
|
+
arg: e
|
|
1031
1037
|
},
|
|
1032
1038
|
i,
|
|
1033
|
-
`toHaveProp("${
|
|
1034
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
1039
|
+
`toHaveProp("${e}", ${i})`
|
|
1040
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1035
1041
|
{
|
|
1036
1042
|
type: "eval",
|
|
1037
1043
|
el: this.wrapper.unwrap(),
|
|
1038
1044
|
fn: m
|
|
1039
1045
|
},
|
|
1040
|
-
|
|
1046
|
+
e,
|
|
1041
1047
|
"toHaveVisibleError(${value})"
|
|
1042
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
1048
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1043
1049
|
{
|
|
1044
1050
|
type: "eval",
|
|
1045
1051
|
el: this.wrapper.unwrap(),
|
|
1046
1052
|
fn: u
|
|
1047
1053
|
},
|
|
1048
|
-
|
|
1054
|
+
e,
|
|
1049
1055
|
"toHaveValue(${value})"
|
|
1050
1056
|
));
|
|
1051
1057
|
}
|
|
@@ -1053,350 +1059,380 @@ class $r {
|
|
|
1053
1059
|
const vt = {
|
|
1054
1060
|
name: "combobox"
|
|
1055
1061
|
};
|
|
1056
|
-
class
|
|
1062
|
+
class Rr extends n {
|
|
1057
1063
|
constructor() {
|
|
1058
|
-
super(...arguments), this.type = "combobox", this.componentInfo = vt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.fill = this.ctx.driver.wrapAction(
|
|
1064
|
+
super(...arguments), this.type = "combobox", this.componentInfo = vt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.fill = this.ctx.driver.wrapAction(Be.bind(this)), this.clear = this.ctx.driver.wrapAction(Ve.bind(this)), this.selectOptionByText = this.ctx.driver.wrapAction(R.bind(this)), this.selectOptionByValue = this.ctx.driver.wrapAction(D.bind(this)), this.control = v.bind(this, "input.control");
|
|
1059
1065
|
}
|
|
1060
1066
|
}
|
|
1061
|
-
class
|
|
1067
|
+
class Gr extends a {
|
|
1062
1068
|
constructor() {
|
|
1063
1069
|
super(...arguments), this.componentInfo = vt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1064
1070
|
}
|
|
1065
1071
|
wrap(r) {
|
|
1066
|
-
return new
|
|
1072
|
+
return new Rr(this.ctx, r);
|
|
1067
1073
|
}
|
|
1068
1074
|
}
|
|
1069
|
-
class
|
|
1075
|
+
class Lr {
|
|
1070
1076
|
constructor(r, s) {
|
|
1071
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1077
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1072
1078
|
{
|
|
1073
1079
|
type: "eval",
|
|
1074
1080
|
el: this.wrapper.unwrap(),
|
|
1075
1081
|
fn: (c, o) => c[o],
|
|
1076
|
-
arg:
|
|
1082
|
+
arg: e
|
|
1077
1083
|
},
|
|
1078
1084
|
i,
|
|
1079
|
-
`toHaveProp("${
|
|
1080
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
1085
|
+
`toHaveProp("${e}", ${i})`
|
|
1086
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1081
1087
|
{
|
|
1082
1088
|
type: "eval",
|
|
1083
1089
|
el: this.wrapper.unwrap(),
|
|
1084
1090
|
fn: m
|
|
1085
1091
|
},
|
|
1086
|
-
|
|
1092
|
+
e,
|
|
1087
1093
|
"toHaveVisibleError(${value})"
|
|
1088
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
1094
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1089
1095
|
{
|
|
1090
1096
|
type: "eval",
|
|
1091
1097
|
el: this.wrapper.unwrap(),
|
|
1092
1098
|
fn: w
|
|
1093
1099
|
},
|
|
1094
|
-
|
|
1100
|
+
e,
|
|
1095
1101
|
"toHaveIcon(${value})"
|
|
1096
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
1102
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1097
1103
|
{
|
|
1098
1104
|
type: "eval",
|
|
1099
1105
|
el: this.wrapper.unwrap(),
|
|
1100
1106
|
fn: u
|
|
1101
1107
|
},
|
|
1102
|
-
|
|
1108
|
+
e,
|
|
1103
1109
|
"toHaveValue(${value})"
|
|
1104
1110
|
));
|
|
1105
1111
|
}
|
|
1106
1112
|
}
|
|
1107
1113
|
const ut = {
|
|
1108
|
-
name: "
|
|
1114
|
+
name: "contextual-help"
|
|
1109
1115
|
};
|
|
1110
|
-
class
|
|
1116
|
+
class Or extends n {
|
|
1111
1117
|
constructor() {
|
|
1112
|
-
super(...arguments), this.type = "
|
|
1118
|
+
super(...arguments), this.type = "contextualHelp", this.componentInfo = ut, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1113
1119
|
}
|
|
1114
1120
|
}
|
|
1115
|
-
class
|
|
1121
|
+
class Fr extends a {
|
|
1116
1122
|
constructor() {
|
|
1117
1123
|
super(...arguments), this.componentInfo = ut, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1118
1124
|
}
|
|
1119
1125
|
wrap(r) {
|
|
1120
|
-
return new
|
|
1126
|
+
return new Or(this.ctx, r);
|
|
1121
1127
|
}
|
|
1122
1128
|
}
|
|
1123
|
-
class
|
|
1129
|
+
class Ur {
|
|
1124
1130
|
constructor(r, s) {
|
|
1125
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1131
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1126
1132
|
{
|
|
1127
1133
|
type: "eval",
|
|
1128
1134
|
el: this.wrapper.unwrap(),
|
|
1129
1135
|
fn: (c, o) => c[o],
|
|
1130
|
-
arg:
|
|
1136
|
+
arg: e
|
|
1131
1137
|
},
|
|
1132
1138
|
i,
|
|
1133
|
-
`toHaveProp("${
|
|
1139
|
+
`toHaveProp("${e}", ${i})`
|
|
1134
1140
|
));
|
|
1135
1141
|
}
|
|
1136
1142
|
}
|
|
1137
1143
|
const wt = {
|
|
1138
|
-
name: "data-grid
|
|
1144
|
+
name: "data-grid"
|
|
1139
1145
|
};
|
|
1140
|
-
class
|
|
1146
|
+
class Mr extends n {
|
|
1141
1147
|
constructor() {
|
|
1142
|
-
super(...arguments), this.type = "
|
|
1148
|
+
super(...arguments), this.type = "dataGrid", this.componentInfo = wt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1143
1149
|
}
|
|
1144
1150
|
}
|
|
1145
|
-
class
|
|
1151
|
+
class jr extends a {
|
|
1146
1152
|
constructor() {
|
|
1147
1153
|
super(...arguments), this.componentInfo = wt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1148
1154
|
}
|
|
1149
1155
|
wrap(r) {
|
|
1150
|
-
return new
|
|
1156
|
+
return new Mr(this.ctx, r);
|
|
1151
1157
|
}
|
|
1152
1158
|
}
|
|
1153
|
-
class
|
|
1159
|
+
class _r {
|
|
1154
1160
|
constructor(r, s) {
|
|
1155
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1161
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1156
1162
|
{
|
|
1157
1163
|
type: "eval",
|
|
1158
1164
|
el: this.wrapper.unwrap(),
|
|
1159
1165
|
fn: (c, o) => c[o],
|
|
1160
|
-
arg:
|
|
1166
|
+
arg: e
|
|
1161
1167
|
},
|
|
1162
1168
|
i,
|
|
1163
|
-
`toHaveProp("${
|
|
1169
|
+
`toHaveProp("${e}", ${i})`
|
|
1164
1170
|
));
|
|
1165
1171
|
}
|
|
1166
1172
|
}
|
|
1167
1173
|
const bt = {
|
|
1168
|
-
name: "data-grid-
|
|
1174
|
+
name: "data-grid-cell"
|
|
1169
1175
|
};
|
|
1170
|
-
class
|
|
1176
|
+
class zr extends n {
|
|
1171
1177
|
constructor() {
|
|
1172
|
-
super(...arguments), this.type = "
|
|
1178
|
+
super(...arguments), this.type = "dataGridCell", this.componentInfo = bt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1173
1179
|
}
|
|
1174
1180
|
}
|
|
1175
|
-
class
|
|
1181
|
+
class Jr extends a {
|
|
1176
1182
|
constructor() {
|
|
1177
1183
|
super(...arguments), this.componentInfo = bt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1178
1184
|
}
|
|
1179
1185
|
wrap(r) {
|
|
1180
|
-
return new
|
|
1186
|
+
return new zr(this.ctx, r);
|
|
1181
1187
|
}
|
|
1182
1188
|
}
|
|
1183
|
-
class
|
|
1189
|
+
class Kr {
|
|
1184
1190
|
constructor(r, s) {
|
|
1185
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1191
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1186
1192
|
{
|
|
1187
1193
|
type: "eval",
|
|
1188
1194
|
el: this.wrapper.unwrap(),
|
|
1189
1195
|
fn: (c, o) => c[o],
|
|
1190
|
-
arg:
|
|
1196
|
+
arg: e
|
|
1191
1197
|
},
|
|
1192
1198
|
i,
|
|
1193
|
-
`toHaveProp("${
|
|
1199
|
+
`toHaveProp("${e}", ${i})`
|
|
1194
1200
|
));
|
|
1195
1201
|
}
|
|
1196
1202
|
}
|
|
1197
1203
|
const mt = {
|
|
1204
|
+
name: "data-grid-row"
|
|
1205
|
+
};
|
|
1206
|
+
class Qr extends n {
|
|
1207
|
+
constructor() {
|
|
1208
|
+
super(...arguments), this.type = "dataGridRow", this.componentInfo = mt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
class Xr extends a {
|
|
1212
|
+
constructor() {
|
|
1213
|
+
super(...arguments), this.componentInfo = mt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1214
|
+
}
|
|
1215
|
+
wrap(r) {
|
|
1216
|
+
return new Qr(this.ctx, r);
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
class Yr {
|
|
1220
|
+
constructor(r, s) {
|
|
1221
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1222
|
+
{
|
|
1223
|
+
type: "eval",
|
|
1224
|
+
el: this.wrapper.unwrap(),
|
|
1225
|
+
fn: (c, o) => c[o],
|
|
1226
|
+
arg: e
|
|
1227
|
+
},
|
|
1228
|
+
i,
|
|
1229
|
+
`toHaveProp("${e}", ${i})`
|
|
1230
|
+
));
|
|
1231
|
+
}
|
|
1232
|
+
}
|
|
1233
|
+
const ft = {
|
|
1198
1234
|
name: "date-picker"
|
|
1199
1235
|
};
|
|
1200
|
-
class
|
|
1236
|
+
class Zr extends n {
|
|
1201
1237
|
constructor() {
|
|
1202
|
-
super(...arguments), this.type = "datePicker", this.componentInfo =
|
|
1238
|
+
super(...arguments), this.type = "datePicker", this.componentInfo = ft, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.clear = this.ctx.driver.wrapAction($.bind(this)), this.selectDate = this.ctx.driver.wrapAction(We.bind(this)), this.control = S.bind(this, "[data-vvd-component=text-field].control"), this.pickerButton = y.bind(this, "#picker-button"), this.clearButton = y.bind(this, "#clear-button");
|
|
1203
1239
|
}
|
|
1204
1240
|
}
|
|
1205
|
-
class
|
|
1241
|
+
class Nr extends a {
|
|
1206
1242
|
constructor() {
|
|
1207
|
-
super(...arguments), this.componentInfo =
|
|
1243
|
+
super(...arguments), this.componentInfo = ft, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1208
1244
|
}
|
|
1209
1245
|
wrap(r) {
|
|
1210
|
-
return new
|
|
1246
|
+
return new Zr(this.ctx, r);
|
|
1211
1247
|
}
|
|
1212
1248
|
}
|
|
1213
|
-
class
|
|
1249
|
+
class ti {
|
|
1214
1250
|
constructor(r, s) {
|
|
1215
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1251
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1216
1252
|
{
|
|
1217
1253
|
type: "eval",
|
|
1218
1254
|
el: this.wrapper.unwrap(),
|
|
1219
1255
|
fn: (c, o) => c[o],
|
|
1220
|
-
arg:
|
|
1256
|
+
arg: e
|
|
1221
1257
|
},
|
|
1222
1258
|
i,
|
|
1223
|
-
`toHaveProp("${
|
|
1224
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
1259
|
+
`toHaveProp("${e}", ${i})`
|
|
1260
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1225
1261
|
{
|
|
1226
1262
|
type: "eval",
|
|
1227
1263
|
el: this.wrapper.unwrap(),
|
|
1228
1264
|
fn: m
|
|
1229
1265
|
},
|
|
1230
|
-
|
|
1266
|
+
e,
|
|
1231
1267
|
"toHaveVisibleError(${value})"
|
|
1232
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
1268
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1233
1269
|
{
|
|
1234
1270
|
type: "eval",
|
|
1235
1271
|
el: this.wrapper.unwrap(),
|
|
1236
1272
|
fn: u
|
|
1237
1273
|
},
|
|
1238
|
-
|
|
1274
|
+
e,
|
|
1239
1275
|
"toHaveValue(${value})"
|
|
1240
1276
|
));
|
|
1241
1277
|
}
|
|
1242
1278
|
}
|
|
1243
|
-
const
|
|
1279
|
+
const Et = {
|
|
1244
1280
|
name: "date-range-picker"
|
|
1245
1281
|
};
|
|
1246
|
-
class
|
|
1282
|
+
class ei extends n {
|
|
1247
1283
|
constructor() {
|
|
1248
|
-
super(...arguments), this.type = "dateRangePicker", this.componentInfo =
|
|
1284
|
+
super(...arguments), this.type = "dateRangePicker", this.componentInfo = Et, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.clear = this.ctx.driver.wrapAction($.bind(this)), this.selectDateRange = this.ctx.driver.wrapAction(Ge.bind(this)), this.control = S.bind(this, "[data-vvd-component=text-field].control"), this.pickerButton = y.bind(this, "#picker-button"), this.clearButton = y.bind(this, "#clear-button");
|
|
1249
1285
|
}
|
|
1250
1286
|
}
|
|
1251
|
-
class
|
|
1287
|
+
class ri extends a {
|
|
1252
1288
|
constructor() {
|
|
1253
|
-
super(...arguments), this.componentInfo =
|
|
1289
|
+
super(...arguments), this.componentInfo = Et, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1254
1290
|
}
|
|
1255
1291
|
wrap(r) {
|
|
1256
|
-
return new
|
|
1292
|
+
return new ei(this.ctx, r);
|
|
1257
1293
|
}
|
|
1258
1294
|
}
|
|
1259
|
-
class
|
|
1295
|
+
class ii {
|
|
1260
1296
|
constructor(r, s) {
|
|
1261
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1297
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1262
1298
|
{
|
|
1263
1299
|
type: "eval",
|
|
1264
1300
|
el: this.wrapper.unwrap(),
|
|
1265
1301
|
fn: (c, o) => c[o],
|
|
1266
|
-
arg:
|
|
1302
|
+
arg: e
|
|
1267
1303
|
},
|
|
1268
1304
|
i,
|
|
1269
|
-
`toHaveProp("${
|
|
1270
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
1305
|
+
`toHaveProp("${e}", ${i})`
|
|
1306
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1271
1307
|
{
|
|
1272
1308
|
type: "eval",
|
|
1273
1309
|
el: this.wrapper.unwrap(),
|
|
1274
1310
|
fn: m
|
|
1275
1311
|
},
|
|
1276
|
-
|
|
1312
|
+
e,
|
|
1277
1313
|
"toHaveVisibleError(${value})"
|
|
1278
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
1314
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1279
1315
|
{
|
|
1280
1316
|
type: "eval",
|
|
1281
1317
|
el: this.wrapper.unwrap(),
|
|
1282
1318
|
fn: u
|
|
1283
1319
|
},
|
|
1284
|
-
|
|
1320
|
+
e,
|
|
1285
1321
|
"toHaveValue(${value})"
|
|
1286
|
-
)), this.toHaveRange = this.ctx.driver.wrapExpect((
|
|
1322
|
+
)), this.toHaveRange = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1287
1323
|
{
|
|
1288
1324
|
type: "eval",
|
|
1289
1325
|
el: this.wrapper.unwrap(),
|
|
1290
|
-
fn:
|
|
1326
|
+
fn: Se
|
|
1291
1327
|
},
|
|
1292
|
-
|
|
1328
|
+
e,
|
|
1293
1329
|
"toHaveRange(${value})"
|
|
1294
1330
|
));
|
|
1295
1331
|
}
|
|
1296
1332
|
}
|
|
1297
|
-
const
|
|
1333
|
+
const yt = {
|
|
1298
1334
|
name: "date-time-picker"
|
|
1299
1335
|
};
|
|
1300
|
-
class
|
|
1336
|
+
class si extends n {
|
|
1301
1337
|
constructor() {
|
|
1302
|
-
super(...arguments), this.type = "dateTimePicker", this.componentInfo =
|
|
1338
|
+
super(...arguments), this.type = "dateTimePicker", this.componentInfo = yt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.clear = this.ctx.driver.wrapAction($.bind(this)), this.selectDateTime = this.ctx.driver.wrapAction(Oe.bind(this)), this.control = S.bind(this, "[data-vvd-component=text-field].control"), this.pickerButton = y.bind(this, "#picker-button"), this.clearButton = y.bind(this, "#clear-button");
|
|
1303
1339
|
}
|
|
1304
1340
|
}
|
|
1305
|
-
class
|
|
1341
|
+
class ci extends a {
|
|
1306
1342
|
constructor() {
|
|
1307
|
-
super(...arguments), this.componentInfo =
|
|
1343
|
+
super(...arguments), this.componentInfo = yt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1308
1344
|
}
|
|
1309
1345
|
wrap(r) {
|
|
1310
|
-
return new
|
|
1346
|
+
return new si(this.ctx, r);
|
|
1311
1347
|
}
|
|
1312
1348
|
}
|
|
1313
|
-
class
|
|
1349
|
+
class oi {
|
|
1314
1350
|
constructor(r, s) {
|
|
1315
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1351
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1316
1352
|
{
|
|
1317
1353
|
type: "eval",
|
|
1318
1354
|
el: this.wrapper.unwrap(),
|
|
1319
1355
|
fn: (c, o) => c[o],
|
|
1320
|
-
arg:
|
|
1356
|
+
arg: e
|
|
1321
1357
|
},
|
|
1322
1358
|
i,
|
|
1323
|
-
`toHaveProp("${
|
|
1324
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
1359
|
+
`toHaveProp("${e}", ${i})`
|
|
1360
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1325
1361
|
{
|
|
1326
1362
|
type: "eval",
|
|
1327
1363
|
el: this.wrapper.unwrap(),
|
|
1328
1364
|
fn: m
|
|
1329
1365
|
},
|
|
1330
|
-
|
|
1366
|
+
e,
|
|
1331
1367
|
"toHaveVisibleError(${value})"
|
|
1332
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
1368
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1333
1369
|
{
|
|
1334
1370
|
type: "eval",
|
|
1335
1371
|
el: this.wrapper.unwrap(),
|
|
1336
1372
|
fn: u
|
|
1337
1373
|
},
|
|
1338
|
-
|
|
1374
|
+
e,
|
|
1339
1375
|
"toHaveValue(${value})"
|
|
1340
1376
|
));
|
|
1341
1377
|
}
|
|
1342
1378
|
}
|
|
1343
|
-
const
|
|
1379
|
+
const It = {
|
|
1344
1380
|
name: "dial-pad"
|
|
1345
1381
|
};
|
|
1346
|
-
class
|
|
1382
|
+
class ni extends n {
|
|
1347
1383
|
constructor() {
|
|
1348
|
-
super(...arguments), this.type = "dialPad", this.componentInfo =
|
|
1384
|
+
super(...arguments), this.type = "dialPad", this.componentInfo = It, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1349
1385
|
}
|
|
1350
1386
|
}
|
|
1351
|
-
class
|
|
1387
|
+
class ai extends a {
|
|
1352
1388
|
constructor() {
|
|
1353
|
-
super(...arguments), this.componentInfo =
|
|
1389
|
+
super(...arguments), this.componentInfo = It, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1354
1390
|
}
|
|
1355
1391
|
wrap(r) {
|
|
1356
|
-
return new
|
|
1392
|
+
return new ni(this.ctx, r);
|
|
1357
1393
|
}
|
|
1358
1394
|
}
|
|
1359
|
-
class
|
|
1395
|
+
class hi {
|
|
1360
1396
|
constructor(r, s) {
|
|
1361
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1397
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1362
1398
|
{
|
|
1363
1399
|
type: "eval",
|
|
1364
1400
|
el: this.wrapper.unwrap(),
|
|
1365
1401
|
fn: (c, o) => c[o],
|
|
1366
|
-
arg:
|
|
1402
|
+
arg: e
|
|
1367
1403
|
},
|
|
1368
1404
|
i,
|
|
1369
|
-
`toHaveProp("${
|
|
1405
|
+
`toHaveProp("${e}", ${i})`
|
|
1370
1406
|
));
|
|
1371
1407
|
}
|
|
1372
1408
|
}
|
|
1373
|
-
const
|
|
1409
|
+
const gt = {
|
|
1374
1410
|
name: "dialog"
|
|
1375
1411
|
};
|
|
1376
|
-
class
|
|
1412
|
+
class pi extends n {
|
|
1377
1413
|
constructor() {
|
|
1378
|
-
super(...arguments), this.type = "dialog", this.componentInfo =
|
|
1414
|
+
super(...arguments), this.type = "dialog", this.componentInfo = gt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.dismiss = this.ctx.driver.wrapAction(b.bind(this, () => this.dismissButton())), this.dismissButton = v.bind(this, ".dismiss-button");
|
|
1379
1415
|
}
|
|
1380
1416
|
}
|
|
1381
|
-
class
|
|
1417
|
+
class di extends a {
|
|
1382
1418
|
constructor() {
|
|
1383
|
-
super(...arguments), this.componentInfo =
|
|
1419
|
+
super(...arguments), this.componentInfo = gt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byHeadline = this.ctx.driver.wrapSelector(k.bind(this));
|
|
1384
1420
|
}
|
|
1385
1421
|
wrap(r) {
|
|
1386
|
-
return new
|
|
1422
|
+
return new pi(this.ctx, r);
|
|
1387
1423
|
}
|
|
1388
1424
|
}
|
|
1389
|
-
class
|
|
1425
|
+
class li {
|
|
1390
1426
|
constructor(r, s) {
|
|
1391
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1427
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1392
1428
|
{
|
|
1393
1429
|
type: "eval",
|
|
1394
1430
|
el: this.wrapper.unwrap(),
|
|
1395
1431
|
fn: (c, o) => c[o],
|
|
1396
|
-
arg:
|
|
1432
|
+
arg: e
|
|
1397
1433
|
},
|
|
1398
1434
|
i,
|
|
1399
|
-
`toHaveProp("${
|
|
1435
|
+
`toHaveProp("${e}", ${i})`
|
|
1400
1436
|
)), this.toBeOpen = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
1401
1437
|
{
|
|
1402
1438
|
type: "eval",
|
|
@@ -1413,294 +1449,294 @@ class ti {
|
|
|
1413
1449
|
},
|
|
1414
1450
|
!1,
|
|
1415
1451
|
"toBeClosed()"
|
|
1416
|
-
)), this.toHaveHeadline = this.ctx.driver.wrapExpect((
|
|
1452
|
+
)), this.toHaveHeadline = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1417
1453
|
{
|
|
1418
1454
|
type: "eval",
|
|
1419
1455
|
el: this.wrapper.unwrap(),
|
|
1420
1456
|
fn: _
|
|
1421
1457
|
},
|
|
1422
|
-
|
|
1458
|
+
e,
|
|
1423
1459
|
"toHaveHeadline(${value})"
|
|
1424
1460
|
));
|
|
1425
1461
|
}
|
|
1426
1462
|
}
|
|
1427
|
-
const
|
|
1463
|
+
const At = {
|
|
1428
1464
|
name: "divider"
|
|
1429
1465
|
};
|
|
1430
|
-
class
|
|
1466
|
+
class xi extends n {
|
|
1431
1467
|
constructor() {
|
|
1432
|
-
super(...arguments), this.type = "divider", this.componentInfo =
|
|
1468
|
+
super(...arguments), this.type = "divider", this.componentInfo = At, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1433
1469
|
}
|
|
1434
1470
|
}
|
|
1435
|
-
class
|
|
1471
|
+
class vi extends a {
|
|
1436
1472
|
constructor() {
|
|
1437
|
-
super(...arguments), this.componentInfo =
|
|
1473
|
+
super(...arguments), this.componentInfo = At, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1438
1474
|
}
|
|
1439
1475
|
wrap(r) {
|
|
1440
|
-
return new
|
|
1476
|
+
return new xi(this.ctx, r);
|
|
1441
1477
|
}
|
|
1442
1478
|
}
|
|
1443
|
-
class
|
|
1479
|
+
class ui {
|
|
1444
1480
|
constructor(r, s) {
|
|
1445
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1481
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1446
1482
|
{
|
|
1447
1483
|
type: "eval",
|
|
1448
1484
|
el: this.wrapper.unwrap(),
|
|
1449
1485
|
fn: (c, o) => c[o],
|
|
1450
|
-
arg:
|
|
1486
|
+
arg: e
|
|
1451
1487
|
},
|
|
1452
1488
|
i,
|
|
1453
|
-
`toHaveProp("${
|
|
1489
|
+
`toHaveProp("${e}", ${i})`
|
|
1454
1490
|
));
|
|
1455
1491
|
}
|
|
1456
1492
|
}
|
|
1457
|
-
const
|
|
1493
|
+
const Ht = {
|
|
1458
1494
|
name: "empty-state"
|
|
1459
1495
|
};
|
|
1460
|
-
class
|
|
1496
|
+
class wi extends n {
|
|
1461
1497
|
constructor() {
|
|
1462
|
-
super(...arguments), this.type = "emptyState", this.componentInfo =
|
|
1498
|
+
super(...arguments), this.type = "emptyState", this.componentInfo = Ht, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1463
1499
|
}
|
|
1464
1500
|
}
|
|
1465
|
-
class
|
|
1501
|
+
class bi extends a {
|
|
1466
1502
|
constructor() {
|
|
1467
|
-
super(...arguments), this.componentInfo =
|
|
1503
|
+
super(...arguments), this.componentInfo = Ht, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1468
1504
|
}
|
|
1469
1505
|
wrap(r) {
|
|
1470
|
-
return new
|
|
1506
|
+
return new wi(this.ctx, r);
|
|
1471
1507
|
}
|
|
1472
1508
|
}
|
|
1473
|
-
class
|
|
1509
|
+
class mi {
|
|
1474
1510
|
constructor(r, s) {
|
|
1475
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1511
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1476
1512
|
{
|
|
1477
1513
|
type: "eval",
|
|
1478
1514
|
el: this.wrapper.unwrap(),
|
|
1479
1515
|
fn: (c, o) => c[o],
|
|
1480
|
-
arg:
|
|
1516
|
+
arg: e
|
|
1481
1517
|
},
|
|
1482
1518
|
i,
|
|
1483
|
-
`toHaveProp("${
|
|
1519
|
+
`toHaveProp("${e}", ${i})`
|
|
1484
1520
|
));
|
|
1485
1521
|
}
|
|
1486
1522
|
}
|
|
1487
|
-
const
|
|
1523
|
+
const Pt = {
|
|
1488
1524
|
name: "fab"
|
|
1489
1525
|
};
|
|
1490
|
-
class
|
|
1526
|
+
class fi extends n {
|
|
1491
1527
|
constructor() {
|
|
1492
|
-
super(...arguments), this.type = "fab", this.componentInfo =
|
|
1528
|
+
super(...arguments), this.type = "fab", this.componentInfo = Pt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.click = this.ctx.driver.wrapAction(b.bind(this, () => this.control())), this.control = v.bind(this, "button.control");
|
|
1493
1529
|
}
|
|
1494
1530
|
}
|
|
1495
|
-
class
|
|
1531
|
+
class Ei extends a {
|
|
1496
1532
|
constructor() {
|
|
1497
|
-
super(...arguments), this.componentInfo =
|
|
1533
|
+
super(...arguments), this.componentInfo = Pt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1498
1534
|
}
|
|
1499
1535
|
wrap(r) {
|
|
1500
|
-
return new
|
|
1536
|
+
return new fi(this.ctx, r);
|
|
1501
1537
|
}
|
|
1502
1538
|
}
|
|
1503
|
-
class
|
|
1539
|
+
class yi {
|
|
1504
1540
|
constructor(r, s) {
|
|
1505
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1541
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1506
1542
|
{
|
|
1507
1543
|
type: "eval",
|
|
1508
1544
|
el: this.wrapper.unwrap(),
|
|
1509
1545
|
fn: (c, o) => c[o],
|
|
1510
|
-
arg:
|
|
1546
|
+
arg: e
|
|
1511
1547
|
},
|
|
1512
1548
|
i,
|
|
1513
|
-
`toHaveProp("${
|
|
1514
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
1549
|
+
`toHaveProp("${e}", ${i})`
|
|
1550
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1515
1551
|
{
|
|
1516
1552
|
type: "eval",
|
|
1517
1553
|
el: this.wrapper.unwrap(),
|
|
1518
1554
|
fn: u
|
|
1519
1555
|
},
|
|
1520
|
-
|
|
1556
|
+
e,
|
|
1521
1557
|
"toHaveValue(${value})"
|
|
1522
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
1558
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1523
1559
|
{
|
|
1524
1560
|
type: "eval",
|
|
1525
1561
|
el: this.wrapper.unwrap(),
|
|
1526
1562
|
fn: w
|
|
1527
1563
|
},
|
|
1528
|
-
|
|
1564
|
+
e,
|
|
1529
1565
|
"toHaveIcon(${value})"
|
|
1530
1566
|
));
|
|
1531
1567
|
}
|
|
1532
1568
|
}
|
|
1533
|
-
const
|
|
1569
|
+
const $t = {
|
|
1534
1570
|
name: "file-picker"
|
|
1535
1571
|
};
|
|
1536
|
-
class
|
|
1572
|
+
class Ii extends n {
|
|
1537
1573
|
constructor() {
|
|
1538
|
-
super(...arguments), this.type = "filePicker", this.componentInfo =
|
|
1574
|
+
super(...arguments), this.type = "filePicker", this.componentInfo = $t, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1539
1575
|
}
|
|
1540
1576
|
}
|
|
1541
|
-
class
|
|
1577
|
+
class gi extends a {
|
|
1542
1578
|
constructor() {
|
|
1543
|
-
super(...arguments), this.componentInfo =
|
|
1579
|
+
super(...arguments), this.componentInfo = $t, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1544
1580
|
}
|
|
1545
1581
|
wrap(r) {
|
|
1546
|
-
return new
|
|
1582
|
+
return new Ii(this.ctx, r);
|
|
1547
1583
|
}
|
|
1548
1584
|
}
|
|
1549
|
-
class
|
|
1585
|
+
class Ai {
|
|
1550
1586
|
constructor(r, s) {
|
|
1551
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1587
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1552
1588
|
{
|
|
1553
1589
|
type: "eval",
|
|
1554
1590
|
el: this.wrapper.unwrap(),
|
|
1555
1591
|
fn: (c, o) => c[o],
|
|
1556
|
-
arg:
|
|
1592
|
+
arg: e
|
|
1557
1593
|
},
|
|
1558
1594
|
i,
|
|
1559
|
-
`toHaveProp("${
|
|
1560
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
1595
|
+
`toHaveProp("${e}", ${i})`
|
|
1596
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1561
1597
|
{
|
|
1562
1598
|
type: "eval",
|
|
1563
1599
|
el: this.wrapper.unwrap(),
|
|
1564
1600
|
fn: m
|
|
1565
1601
|
},
|
|
1566
|
-
|
|
1602
|
+
e,
|
|
1567
1603
|
"toHaveVisibleError(${value})"
|
|
1568
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
1604
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1569
1605
|
{
|
|
1570
1606
|
type: "eval",
|
|
1571
1607
|
el: this.wrapper.unwrap(),
|
|
1572
1608
|
fn: u
|
|
1573
1609
|
},
|
|
1574
|
-
|
|
1610
|
+
e,
|
|
1575
1611
|
"toHaveValue(${value})"
|
|
1576
1612
|
));
|
|
1577
1613
|
}
|
|
1578
1614
|
}
|
|
1579
|
-
const
|
|
1615
|
+
const St = {
|
|
1580
1616
|
name: "header"
|
|
1581
1617
|
};
|
|
1582
|
-
class
|
|
1618
|
+
class Hi extends n {
|
|
1583
1619
|
constructor() {
|
|
1584
|
-
super(...arguments), this.type = "header", this.componentInfo =
|
|
1620
|
+
super(...arguments), this.type = "header", this.componentInfo = St, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1585
1621
|
}
|
|
1586
1622
|
}
|
|
1587
|
-
class
|
|
1623
|
+
class Pi extends a {
|
|
1588
1624
|
constructor() {
|
|
1589
|
-
super(...arguments), this.componentInfo =
|
|
1625
|
+
super(...arguments), this.componentInfo = St, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1590
1626
|
}
|
|
1591
1627
|
wrap(r) {
|
|
1592
|
-
return new
|
|
1628
|
+
return new Hi(this.ctx, r);
|
|
1593
1629
|
}
|
|
1594
1630
|
}
|
|
1595
|
-
class
|
|
1631
|
+
class $i {
|
|
1596
1632
|
constructor(r, s) {
|
|
1597
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1633
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1598
1634
|
{
|
|
1599
1635
|
type: "eval",
|
|
1600
1636
|
el: this.wrapper.unwrap(),
|
|
1601
1637
|
fn: (c, o) => c[o],
|
|
1602
|
-
arg:
|
|
1638
|
+
arg: e
|
|
1603
1639
|
},
|
|
1604
1640
|
i,
|
|
1605
|
-
`toHaveProp("${
|
|
1641
|
+
`toHaveProp("${e}", ${i})`
|
|
1606
1642
|
));
|
|
1607
1643
|
}
|
|
1608
1644
|
}
|
|
1609
|
-
const
|
|
1645
|
+
const Ct = {
|
|
1610
1646
|
name: "icon"
|
|
1611
1647
|
};
|
|
1612
|
-
class
|
|
1648
|
+
class Si extends n {
|
|
1613
1649
|
constructor() {
|
|
1614
|
-
super(...arguments), this.type = "icon", this.componentInfo =
|
|
1650
|
+
super(...arguments), this.type = "icon", this.componentInfo = Ct, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1615
1651
|
}
|
|
1616
1652
|
}
|
|
1617
|
-
class
|
|
1653
|
+
class Ci extends a {
|
|
1618
1654
|
constructor() {
|
|
1619
|
-
super(...arguments), this.componentInfo =
|
|
1655
|
+
super(...arguments), this.componentInfo = Ct, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1620
1656
|
}
|
|
1621
1657
|
wrap(r) {
|
|
1622
|
-
return new
|
|
1658
|
+
return new Si(this.ctx, r);
|
|
1623
1659
|
}
|
|
1624
1660
|
}
|
|
1625
|
-
class
|
|
1661
|
+
class qi {
|
|
1626
1662
|
constructor(r, s) {
|
|
1627
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1663
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1628
1664
|
{
|
|
1629
1665
|
type: "eval",
|
|
1630
1666
|
el: this.wrapper.unwrap(),
|
|
1631
1667
|
fn: (c, o) => c[o],
|
|
1632
|
-
arg:
|
|
1668
|
+
arg: e
|
|
1633
1669
|
},
|
|
1634
1670
|
i,
|
|
1635
|
-
`toHaveProp("${
|
|
1636
|
-
)), this.toHaveName = this.ctx.driver.wrapExpect((
|
|
1671
|
+
`toHaveProp("${e}", ${i})`
|
|
1672
|
+
)), this.toHaveName = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1637
1673
|
{
|
|
1638
1674
|
type: "eval",
|
|
1639
1675
|
el: this.wrapper.unwrap(),
|
|
1640
|
-
fn:
|
|
1676
|
+
fn: qe
|
|
1641
1677
|
},
|
|
1642
|
-
|
|
1678
|
+
e,
|
|
1643
1679
|
"toHaveName(${value})"
|
|
1644
1680
|
));
|
|
1645
1681
|
}
|
|
1646
1682
|
}
|
|
1647
|
-
const
|
|
1683
|
+
const qt = {
|
|
1648
1684
|
name: "layout"
|
|
1649
1685
|
};
|
|
1650
|
-
class
|
|
1686
|
+
class Ti extends n {
|
|
1651
1687
|
constructor() {
|
|
1652
|
-
super(...arguments), this.type = "layout", this.componentInfo =
|
|
1688
|
+
super(...arguments), this.type = "layout", this.componentInfo = qt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1653
1689
|
}
|
|
1654
1690
|
}
|
|
1655
|
-
class
|
|
1691
|
+
class ki extends a {
|
|
1656
1692
|
constructor() {
|
|
1657
|
-
super(...arguments), this.componentInfo =
|
|
1693
|
+
super(...arguments), this.componentInfo = qt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1658
1694
|
}
|
|
1659
1695
|
wrap(r) {
|
|
1660
|
-
return new
|
|
1696
|
+
return new Ti(this.ctx, r);
|
|
1661
1697
|
}
|
|
1662
1698
|
}
|
|
1663
|
-
class
|
|
1699
|
+
class Bi {
|
|
1664
1700
|
constructor(r, s) {
|
|
1665
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1701
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1666
1702
|
{
|
|
1667
1703
|
type: "eval",
|
|
1668
1704
|
el: this.wrapper.unwrap(),
|
|
1669
1705
|
fn: (c, o) => c[o],
|
|
1670
|
-
arg:
|
|
1706
|
+
arg: e
|
|
1671
1707
|
},
|
|
1672
1708
|
i,
|
|
1673
|
-
`toHaveProp("${
|
|
1709
|
+
`toHaveProp("${e}", ${i})`
|
|
1674
1710
|
));
|
|
1675
1711
|
}
|
|
1676
1712
|
}
|
|
1677
|
-
const
|
|
1713
|
+
const Tt = {
|
|
1678
1714
|
name: "menu"
|
|
1679
1715
|
};
|
|
1680
|
-
class
|
|
1716
|
+
class Vi extends n {
|
|
1681
1717
|
constructor() {
|
|
1682
|
-
super(...arguments), this.type = "menu", this.componentInfo =
|
|
1718
|
+
super(...arguments), this.type = "menu", this.componentInfo = Tt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1683
1719
|
}
|
|
1684
1720
|
}
|
|
1685
|
-
class
|
|
1721
|
+
class Wi extends a {
|
|
1686
1722
|
constructor() {
|
|
1687
|
-
super(...arguments), this.componentInfo =
|
|
1723
|
+
super(...arguments), this.componentInfo = Tt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1688
1724
|
}
|
|
1689
1725
|
wrap(r) {
|
|
1690
|
-
return new
|
|
1726
|
+
return new Vi(this.ctx, r);
|
|
1691
1727
|
}
|
|
1692
1728
|
}
|
|
1693
|
-
class
|
|
1729
|
+
class Di {
|
|
1694
1730
|
constructor(r, s) {
|
|
1695
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1731
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1696
1732
|
{
|
|
1697
1733
|
type: "eval",
|
|
1698
1734
|
el: this.wrapper.unwrap(),
|
|
1699
1735
|
fn: (c, o) => c[o],
|
|
1700
|
-
arg:
|
|
1736
|
+
arg: e
|
|
1701
1737
|
},
|
|
1702
1738
|
i,
|
|
1703
|
-
`toHaveProp("${
|
|
1739
|
+
`toHaveProp("${e}", ${i})`
|
|
1704
1740
|
)), this.toBeOpen = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
1705
1741
|
{
|
|
1706
1742
|
type: "eval",
|
|
@@ -1723,37 +1759,37 @@ class Ai {
|
|
|
1723
1759
|
const kt = {
|
|
1724
1760
|
name: "menu-item"
|
|
1725
1761
|
};
|
|
1726
|
-
class
|
|
1762
|
+
class Ri extends n {
|
|
1727
1763
|
constructor() {
|
|
1728
1764
|
super(...arguments), this.type = "menuItem", this.componentInfo = kt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.click = this.ctx.driver.wrapAction(b.bind(this, () => this.base())), this.base = v.bind(this, ".base");
|
|
1729
1765
|
}
|
|
1730
1766
|
}
|
|
1731
|
-
class
|
|
1767
|
+
class Gi extends a {
|
|
1732
1768
|
constructor() {
|
|
1733
1769
|
super(...arguments), this.componentInfo = kt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byText = this.ctx.driver.wrapSelector(B.bind(this));
|
|
1734
1770
|
}
|
|
1735
1771
|
wrap(r) {
|
|
1736
|
-
return new
|
|
1772
|
+
return new Ri(this.ctx, r);
|
|
1737
1773
|
}
|
|
1738
1774
|
}
|
|
1739
|
-
class
|
|
1775
|
+
class Li {
|
|
1740
1776
|
constructor(r, s) {
|
|
1741
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1777
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1742
1778
|
{
|
|
1743
1779
|
type: "eval",
|
|
1744
1780
|
el: this.wrapper.unwrap(),
|
|
1745
1781
|
fn: (c, o) => c[o],
|
|
1746
|
-
arg:
|
|
1782
|
+
arg: e
|
|
1747
1783
|
},
|
|
1748
1784
|
i,
|
|
1749
|
-
`toHaveProp("${
|
|
1750
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
1785
|
+
`toHaveProp("${e}", ${i})`
|
|
1786
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1751
1787
|
{
|
|
1752
1788
|
type: "eval",
|
|
1753
1789
|
el: this.wrapper.unwrap(),
|
|
1754
1790
|
fn: w
|
|
1755
1791
|
},
|
|
1756
|
-
|
|
1792
|
+
e,
|
|
1757
1793
|
"toHaveIcon(${value})"
|
|
1758
1794
|
)), this.toBeChecked = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
1759
1795
|
{
|
|
@@ -1771,74 +1807,74 @@ class $i {
|
|
|
1771
1807
|
},
|
|
1772
1808
|
!1,
|
|
1773
1809
|
"toBeUnchecked()"
|
|
1774
|
-
)), this.toHaveDisabled = this.ctx.driver.wrapExpect((
|
|
1810
|
+
)), this.toHaveDisabled = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1775
1811
|
{
|
|
1776
1812
|
type: "eval",
|
|
1777
1813
|
el: this.wrapper.unwrap(),
|
|
1778
|
-
fn:
|
|
1814
|
+
fn: C
|
|
1779
1815
|
},
|
|
1780
|
-
|
|
1816
|
+
e,
|
|
1781
1817
|
"toHaveDisabled(${value})"
|
|
1782
1818
|
));
|
|
1783
1819
|
}
|
|
1784
1820
|
}
|
|
1785
|
-
const
|
|
1821
|
+
const Bt = {
|
|
1786
1822
|
name: "nav"
|
|
1787
1823
|
};
|
|
1788
|
-
class
|
|
1824
|
+
class Oi extends n {
|
|
1789
1825
|
constructor() {
|
|
1790
|
-
super(...arguments), this.type = "nav", this.componentInfo =
|
|
1826
|
+
super(...arguments), this.type = "nav", this.componentInfo = Bt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1791
1827
|
}
|
|
1792
1828
|
}
|
|
1793
|
-
class
|
|
1829
|
+
class Fi extends a {
|
|
1794
1830
|
constructor() {
|
|
1795
|
-
super(...arguments), this.componentInfo =
|
|
1831
|
+
super(...arguments), this.componentInfo = Bt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1796
1832
|
}
|
|
1797
1833
|
wrap(r) {
|
|
1798
|
-
return new
|
|
1834
|
+
return new Oi(this.ctx, r);
|
|
1799
1835
|
}
|
|
1800
1836
|
}
|
|
1801
|
-
class
|
|
1837
|
+
class Ui {
|
|
1802
1838
|
constructor(r, s) {
|
|
1803
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = (
|
|
1839
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
1804
1840
|
throw new Error("Component does not have props.");
|
|
1805
1841
|
};
|
|
1806
1842
|
}
|
|
1807
1843
|
}
|
|
1808
|
-
const
|
|
1844
|
+
const Vt = {
|
|
1809
1845
|
name: "nav-disclosure"
|
|
1810
1846
|
};
|
|
1811
|
-
class
|
|
1847
|
+
class Mi extends n {
|
|
1812
1848
|
constructor() {
|
|
1813
|
-
super(...arguments), this.type = "navDisclosure", this.componentInfo =
|
|
1849
|
+
super(...arguments), this.type = "navDisclosure", this.componentInfo = Vt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.expand = this.ctx.driver.wrapAction(U.bind(this, !0)), this.collapse = this.ctx.driver.wrapAction(U.bind(this, !1)), this.summary = v.bind(this, "summary");
|
|
1814
1850
|
}
|
|
1815
1851
|
}
|
|
1816
|
-
class
|
|
1852
|
+
class ji extends a {
|
|
1817
1853
|
constructor() {
|
|
1818
|
-
super(...arguments), this.componentInfo =
|
|
1854
|
+
super(...arguments), this.componentInfo = Vt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1819
1855
|
}
|
|
1820
1856
|
wrap(r) {
|
|
1821
|
-
return new
|
|
1857
|
+
return new Mi(this.ctx, r);
|
|
1822
1858
|
}
|
|
1823
1859
|
}
|
|
1824
|
-
class
|
|
1860
|
+
class _i {
|
|
1825
1861
|
constructor(r, s) {
|
|
1826
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1862
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1827
1863
|
{
|
|
1828
1864
|
type: "eval",
|
|
1829
1865
|
el: this.wrapper.unwrap(),
|
|
1830
1866
|
fn: (c, o) => c[o],
|
|
1831
|
-
arg:
|
|
1867
|
+
arg: e
|
|
1832
1868
|
},
|
|
1833
1869
|
i,
|
|
1834
|
-
`toHaveProp("${
|
|
1835
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
1870
|
+
`toHaveProp("${e}", ${i})`
|
|
1871
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1836
1872
|
{
|
|
1837
1873
|
type: "eval",
|
|
1838
1874
|
el: this.wrapper.unwrap(),
|
|
1839
1875
|
fn: w
|
|
1840
1876
|
},
|
|
1841
|
-
|
|
1877
|
+
e,
|
|
1842
1878
|
"toHaveIcon(${value})"
|
|
1843
1879
|
)), this.toBeCurrent = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
1844
1880
|
{
|
|
@@ -1875,40 +1911,40 @@ class Bi {
|
|
|
1875
1911
|
));
|
|
1876
1912
|
}
|
|
1877
1913
|
}
|
|
1878
|
-
const
|
|
1914
|
+
const Wt = {
|
|
1879
1915
|
name: "nav-item"
|
|
1880
1916
|
};
|
|
1881
|
-
class
|
|
1917
|
+
class zi extends n {
|
|
1882
1918
|
constructor() {
|
|
1883
|
-
super(...arguments), this.type = "navItem", this.componentInfo =
|
|
1919
|
+
super(...arguments), this.type = "navItem", this.componentInfo = Wt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.click = this.ctx.driver.wrapAction(b.bind(this, () => this.control())), this.control = v.bind(this, ".control");
|
|
1884
1920
|
}
|
|
1885
1921
|
}
|
|
1886
|
-
class
|
|
1922
|
+
class Ji extends a {
|
|
1887
1923
|
constructor() {
|
|
1888
|
-
super(...arguments), this.componentInfo =
|
|
1924
|
+
super(...arguments), this.componentInfo = Wt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1889
1925
|
}
|
|
1890
1926
|
wrap(r) {
|
|
1891
|
-
return new
|
|
1927
|
+
return new zi(this.ctx, r);
|
|
1892
1928
|
}
|
|
1893
1929
|
}
|
|
1894
|
-
class
|
|
1930
|
+
class Ki {
|
|
1895
1931
|
constructor(r, s) {
|
|
1896
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1932
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1897
1933
|
{
|
|
1898
1934
|
type: "eval",
|
|
1899
1935
|
el: this.wrapper.unwrap(),
|
|
1900
1936
|
fn: (c, o) => c[o],
|
|
1901
|
-
arg:
|
|
1937
|
+
arg: e
|
|
1902
1938
|
},
|
|
1903
1939
|
i,
|
|
1904
|
-
`toHaveProp("${
|
|
1905
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
1940
|
+
`toHaveProp("${e}", ${i})`
|
|
1941
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1906
1942
|
{
|
|
1907
1943
|
type: "eval",
|
|
1908
1944
|
el: this.wrapper.unwrap(),
|
|
1909
1945
|
fn: w
|
|
1910
1946
|
},
|
|
1911
|
-
|
|
1947
|
+
e,
|
|
1912
1948
|
"toHaveIcon(${value})"
|
|
1913
1949
|
)), this.toBeCurrent = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
1914
1950
|
{
|
|
@@ -1929,102 +1965,102 @@ class Di {
|
|
|
1929
1965
|
));
|
|
1930
1966
|
}
|
|
1931
1967
|
}
|
|
1932
|
-
const
|
|
1968
|
+
const Dt = {
|
|
1933
1969
|
name: "note"
|
|
1934
1970
|
};
|
|
1935
|
-
class
|
|
1971
|
+
class Qi extends n {
|
|
1936
1972
|
constructor() {
|
|
1937
|
-
super(...arguments), this.type = "note", this.componentInfo =
|
|
1973
|
+
super(...arguments), this.type = "note", this.componentInfo = Dt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
1938
1974
|
}
|
|
1939
1975
|
}
|
|
1940
|
-
class
|
|
1976
|
+
class Xi extends a {
|
|
1941
1977
|
constructor() {
|
|
1942
|
-
super(...arguments), this.componentInfo =
|
|
1978
|
+
super(...arguments), this.componentInfo = Dt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
1943
1979
|
}
|
|
1944
1980
|
wrap(r) {
|
|
1945
|
-
return new
|
|
1981
|
+
return new Qi(this.ctx, r);
|
|
1946
1982
|
}
|
|
1947
1983
|
}
|
|
1948
|
-
class
|
|
1984
|
+
class Yi {
|
|
1949
1985
|
constructor(r, s) {
|
|
1950
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
1986
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1951
1987
|
{
|
|
1952
1988
|
type: "eval",
|
|
1953
1989
|
el: this.wrapper.unwrap(),
|
|
1954
1990
|
fn: (c, o) => c[o],
|
|
1955
|
-
arg:
|
|
1991
|
+
arg: e
|
|
1956
1992
|
},
|
|
1957
1993
|
i,
|
|
1958
|
-
`toHaveProp("${
|
|
1959
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
1994
|
+
`toHaveProp("${e}", ${i})`
|
|
1995
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1960
1996
|
{
|
|
1961
1997
|
type: "eval",
|
|
1962
1998
|
el: this.wrapper.unwrap(),
|
|
1963
1999
|
fn: w
|
|
1964
2000
|
},
|
|
1965
|
-
|
|
2001
|
+
e,
|
|
1966
2002
|
"toHaveIcon(${value})"
|
|
1967
2003
|
));
|
|
1968
2004
|
}
|
|
1969
2005
|
}
|
|
1970
|
-
const
|
|
2006
|
+
const Rt = {
|
|
1971
2007
|
name: "number-field"
|
|
1972
2008
|
};
|
|
1973
|
-
class
|
|
2009
|
+
class Zi extends n {
|
|
1974
2010
|
constructor() {
|
|
1975
|
-
super(...arguments), this.type = "numberField", this.componentInfo =
|
|
2011
|
+
super(...arguments), this.type = "numberField", this.componentInfo = Rt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.fill = this.ctx.driver.wrapAction(V.bind(this, () => this.control())), this.clear = this.ctx.driver.wrapAction(W.bind(this, () => this.control())), this.clickIncrement = this.ctx.driver.wrapAction(q.bind(this, () => this.incrementButton())), this.clickDecrement = this.ctx.driver.wrapAction(q.bind(this, () => this.decrementButton())), this.control = v.bind(this, "input.control"), this.incrementButton = y.bind(this, "#add"), this.decrementButton = y.bind(this, "#subtract");
|
|
1976
2012
|
}
|
|
1977
2013
|
}
|
|
1978
|
-
class
|
|
2014
|
+
class Ni extends a {
|
|
1979
2015
|
constructor() {
|
|
1980
|
-
super(...arguments), this.componentInfo =
|
|
2016
|
+
super(...arguments), this.componentInfo = Rt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
1981
2017
|
}
|
|
1982
2018
|
wrap(r) {
|
|
1983
|
-
return new
|
|
2019
|
+
return new Zi(this.ctx, r);
|
|
1984
2020
|
}
|
|
1985
2021
|
}
|
|
1986
|
-
class
|
|
2022
|
+
class ts {
|
|
1987
2023
|
constructor(r, s) {
|
|
1988
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2024
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
1989
2025
|
{
|
|
1990
2026
|
type: "eval",
|
|
1991
2027
|
el: this.wrapper.unwrap(),
|
|
1992
2028
|
fn: (c, o) => c[o],
|
|
1993
|
-
arg:
|
|
2029
|
+
arg: e
|
|
1994
2030
|
},
|
|
1995
2031
|
i,
|
|
1996
|
-
`toHaveProp("${
|
|
1997
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
2032
|
+
`toHaveProp("${e}", ${i})`
|
|
2033
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
1998
2034
|
{
|
|
1999
2035
|
type: "eval",
|
|
2000
2036
|
el: this.wrapper.unwrap(),
|
|
2001
2037
|
fn: m
|
|
2002
2038
|
},
|
|
2003
|
-
|
|
2039
|
+
e,
|
|
2004
2040
|
"toHaveVisibleError(${value})"
|
|
2005
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
2041
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2006
2042
|
{
|
|
2007
2043
|
type: "eval",
|
|
2008
2044
|
el: this.wrapper.unwrap(),
|
|
2009
2045
|
fn: w
|
|
2010
2046
|
},
|
|
2011
|
-
|
|
2047
|
+
e,
|
|
2012
2048
|
"toHaveIcon(${value})"
|
|
2013
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
2049
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2014
2050
|
{
|
|
2015
2051
|
type: "eval",
|
|
2016
2052
|
el: this.wrapper.unwrap(),
|
|
2017
2053
|
fn: u
|
|
2018
2054
|
},
|
|
2019
|
-
|
|
2055
|
+
e,
|
|
2020
2056
|
"toHaveValue(${value})"
|
|
2021
|
-
)), this.toHaveValueAsNumber = this.ctx.driver.wrapExpect((
|
|
2057
|
+
)), this.toHaveValueAsNumber = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2022
2058
|
{
|
|
2023
2059
|
type: "eval",
|
|
2024
2060
|
el: this.wrapper.unwrap(),
|
|
2025
2061
|
fn: z
|
|
2026
2062
|
},
|
|
2027
|
-
|
|
2063
|
+
e,
|
|
2028
2064
|
"toHaveValueAsNumber(${value})"
|
|
2029
2065
|
));
|
|
2030
2066
|
}
|
|
@@ -2032,189 +2068,219 @@ class Ui {
|
|
|
2032
2068
|
const Gt = {
|
|
2033
2069
|
name: "option"
|
|
2034
2070
|
};
|
|
2035
|
-
class
|
|
2071
|
+
class es extends n {
|
|
2036
2072
|
constructor() {
|
|
2037
2073
|
super(...arguments), this.type = "option", this.componentInfo = Gt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.click = this.ctx.driver.wrapAction(b.bind(this, () => this.locator));
|
|
2038
2074
|
}
|
|
2039
2075
|
}
|
|
2040
|
-
class
|
|
2076
|
+
class rs extends a {
|
|
2041
2077
|
constructor() {
|
|
2042
2078
|
super(...arguments), this.componentInfo = Gt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2043
2079
|
}
|
|
2044
2080
|
wrap(r) {
|
|
2045
|
-
return new
|
|
2081
|
+
return new es(this.ctx, r);
|
|
2046
2082
|
}
|
|
2047
2083
|
}
|
|
2048
|
-
class
|
|
2084
|
+
class is {
|
|
2049
2085
|
constructor(r, s) {
|
|
2050
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2086
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2051
2087
|
{
|
|
2052
2088
|
type: "eval",
|
|
2053
2089
|
el: this.wrapper.unwrap(),
|
|
2054
2090
|
fn: (c, o) => c[o],
|
|
2055
|
-
arg:
|
|
2091
|
+
arg: e
|
|
2056
2092
|
},
|
|
2057
2093
|
i,
|
|
2058
|
-
`toHaveProp("${
|
|
2059
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
2094
|
+
`toHaveProp("${e}", ${i})`
|
|
2095
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2060
2096
|
{
|
|
2061
2097
|
type: "eval",
|
|
2062
2098
|
el: this.wrapper.unwrap(),
|
|
2063
2099
|
fn: w
|
|
2064
2100
|
},
|
|
2065
|
-
|
|
2101
|
+
e,
|
|
2066
2102
|
"toHaveIcon(${value})"
|
|
2067
2103
|
));
|
|
2068
2104
|
}
|
|
2069
2105
|
}
|
|
2070
|
-
const
|
|
2106
|
+
const Lt = {
|
|
2071
2107
|
name: "pagination"
|
|
2072
2108
|
};
|
|
2073
|
-
class
|
|
2109
|
+
class ss extends n {
|
|
2074
2110
|
constructor() {
|
|
2075
|
-
super(...arguments), this.type = "pagination", this.componentInfo =
|
|
2111
|
+
super(...arguments), this.type = "pagination", this.componentInfo = Lt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.clickNext = this.ctx.driver.wrapAction(b.bind(this, () => this.nextButton())), this.clickPrev = this.ctx.driver.wrapAction(b.bind(this, () => this.prevButton())), this.clickPageIndex = this.ctx.driver.wrapAction(Fe.bind(this)), this.nextButton = v.bind(this, ".next-button"), this.prevButton = v.bind(this, ".prev-button");
|
|
2076
2112
|
}
|
|
2077
2113
|
}
|
|
2078
|
-
class
|
|
2114
|
+
class cs extends a {
|
|
2079
2115
|
constructor() {
|
|
2080
|
-
super(...arguments), this.componentInfo =
|
|
2116
|
+
super(...arguments), this.componentInfo = Lt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2081
2117
|
}
|
|
2082
2118
|
wrap(r) {
|
|
2083
|
-
return new
|
|
2119
|
+
return new ss(this.ctx, r);
|
|
2084
2120
|
}
|
|
2085
2121
|
}
|
|
2086
|
-
class
|
|
2122
|
+
class os {
|
|
2087
2123
|
constructor(r, s) {
|
|
2088
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2124
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2089
2125
|
{
|
|
2090
2126
|
type: "eval",
|
|
2091
2127
|
el: this.wrapper.unwrap(),
|
|
2092
2128
|
fn: (c, o) => c[o],
|
|
2093
|
-
arg:
|
|
2129
|
+
arg: e
|
|
2094
2130
|
},
|
|
2095
2131
|
i,
|
|
2096
|
-
`toHaveProp("${
|
|
2097
|
-
)), this.toHaveTotal = this.ctx.driver.wrapExpect((
|
|
2132
|
+
`toHaveProp("${e}", ${i})`
|
|
2133
|
+
)), this.toHaveTotal = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2098
2134
|
{
|
|
2099
2135
|
type: "eval",
|
|
2100
2136
|
el: this.wrapper.unwrap(),
|
|
2101
|
-
fn:
|
|
2137
|
+
fn: Te
|
|
2102
2138
|
},
|
|
2103
|
-
|
|
2139
|
+
e,
|
|
2104
2140
|
"toHaveTotal(${value})"
|
|
2105
|
-
)), this.toHaveSelectedPage = this.ctx.driver.wrapExpect((
|
|
2141
|
+
)), this.toHaveSelectedPage = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2106
2142
|
{
|
|
2107
2143
|
type: "eval",
|
|
2108
2144
|
el: this.wrapper.unwrap(),
|
|
2109
|
-
fn:
|
|
2145
|
+
fn: ke
|
|
2110
2146
|
},
|
|
2111
|
-
|
|
2147
|
+
e,
|
|
2112
2148
|
"toHaveSelectedPage(${value})"
|
|
2113
2149
|
));
|
|
2114
2150
|
}
|
|
2115
2151
|
}
|
|
2116
|
-
const
|
|
2152
|
+
const Ot = {
|
|
2153
|
+
name: "popover"
|
|
2154
|
+
};
|
|
2155
|
+
class ns extends n {
|
|
2156
|
+
constructor() {
|
|
2157
|
+
super(...arguments), this.type = "popover", this.componentInfo = Ot, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2158
|
+
}
|
|
2159
|
+
}
|
|
2160
|
+
class as extends a {
|
|
2161
|
+
constructor() {
|
|
2162
|
+
super(...arguments), this.componentInfo = Ot, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2163
|
+
}
|
|
2164
|
+
wrap(r) {
|
|
2165
|
+
return new ns(this.ctx, r);
|
|
2166
|
+
}
|
|
2167
|
+
}
|
|
2168
|
+
class hs {
|
|
2169
|
+
constructor(r, s) {
|
|
2170
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2171
|
+
{
|
|
2172
|
+
type: "eval",
|
|
2173
|
+
el: this.wrapper.unwrap(),
|
|
2174
|
+
fn: (c, o) => c[o],
|
|
2175
|
+
arg: e
|
|
2176
|
+
},
|
|
2177
|
+
i,
|
|
2178
|
+
`toHaveProp("${e}", ${i})`
|
|
2179
|
+
));
|
|
2180
|
+
}
|
|
2181
|
+
}
|
|
2182
|
+
const Ft = {
|
|
2117
2183
|
name: "progress"
|
|
2118
2184
|
};
|
|
2119
|
-
class
|
|
2185
|
+
class ps extends n {
|
|
2120
2186
|
constructor() {
|
|
2121
|
-
super(...arguments), this.type = "progress", this.componentInfo =
|
|
2187
|
+
super(...arguments), this.type = "progress", this.componentInfo = Ft, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2122
2188
|
}
|
|
2123
2189
|
}
|
|
2124
|
-
class
|
|
2190
|
+
class ds extends a {
|
|
2125
2191
|
constructor() {
|
|
2126
|
-
super(...arguments), this.componentInfo =
|
|
2192
|
+
super(...arguments), this.componentInfo = Ft, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2127
2193
|
}
|
|
2128
2194
|
wrap(r) {
|
|
2129
|
-
return new
|
|
2195
|
+
return new ps(this.ctx, r);
|
|
2130
2196
|
}
|
|
2131
2197
|
}
|
|
2132
|
-
class
|
|
2198
|
+
class ls {
|
|
2133
2199
|
constructor(r, s) {
|
|
2134
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2200
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2135
2201
|
{
|
|
2136
2202
|
type: "eval",
|
|
2137
2203
|
el: this.wrapper.unwrap(),
|
|
2138
2204
|
fn: (c, o) => c[o],
|
|
2139
|
-
arg:
|
|
2205
|
+
arg: e
|
|
2140
2206
|
},
|
|
2141
2207
|
i,
|
|
2142
|
-
`toHaveProp("${
|
|
2208
|
+
`toHaveProp("${e}", ${i})`
|
|
2143
2209
|
));
|
|
2144
2210
|
}
|
|
2145
2211
|
}
|
|
2146
|
-
const
|
|
2212
|
+
const Ut = {
|
|
2147
2213
|
name: "progress-ring"
|
|
2148
2214
|
};
|
|
2149
|
-
class
|
|
2215
|
+
class xs extends n {
|
|
2150
2216
|
constructor() {
|
|
2151
|
-
super(...arguments), this.type = "progressRing", this.componentInfo =
|
|
2217
|
+
super(...arguments), this.type = "progressRing", this.componentInfo = Ut, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2152
2218
|
}
|
|
2153
2219
|
}
|
|
2154
|
-
class
|
|
2220
|
+
class vs extends a {
|
|
2155
2221
|
constructor() {
|
|
2156
|
-
super(...arguments), this.componentInfo =
|
|
2222
|
+
super(...arguments), this.componentInfo = Ut, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2157
2223
|
}
|
|
2158
2224
|
wrap(r) {
|
|
2159
|
-
return new
|
|
2225
|
+
return new xs(this.ctx, r);
|
|
2160
2226
|
}
|
|
2161
2227
|
}
|
|
2162
|
-
class
|
|
2228
|
+
class us {
|
|
2163
2229
|
constructor(r, s) {
|
|
2164
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2230
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2165
2231
|
{
|
|
2166
2232
|
type: "eval",
|
|
2167
2233
|
el: this.wrapper.unwrap(),
|
|
2168
2234
|
fn: (c, o) => c[o],
|
|
2169
|
-
arg:
|
|
2235
|
+
arg: e
|
|
2170
2236
|
},
|
|
2171
2237
|
i,
|
|
2172
|
-
`toHaveProp("${
|
|
2238
|
+
`toHaveProp("${e}", ${i})`
|
|
2173
2239
|
));
|
|
2174
2240
|
}
|
|
2175
2241
|
}
|
|
2176
|
-
const
|
|
2242
|
+
const Mt = {
|
|
2177
2243
|
name: "radio"
|
|
2178
2244
|
};
|
|
2179
|
-
class
|
|
2245
|
+
class ws extends n {
|
|
2180
2246
|
constructor() {
|
|
2181
|
-
super(...arguments), this.type = "radio", this.componentInfo =
|
|
2247
|
+
super(...arguments), this.type = "radio", this.componentInfo = Mt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.check = this.ctx.driver.wrapAction(b.bind(this, () => this.control())), this.control = v.bind(this, ".control");
|
|
2182
2248
|
}
|
|
2183
2249
|
}
|
|
2184
|
-
class
|
|
2250
|
+
class bs extends a {
|
|
2185
2251
|
constructor() {
|
|
2186
|
-
super(...arguments), this.componentInfo =
|
|
2252
|
+
super(...arguments), this.componentInfo = Mt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2187
2253
|
}
|
|
2188
2254
|
wrap(r) {
|
|
2189
|
-
return new
|
|
2255
|
+
return new ws(this.ctx, r);
|
|
2190
2256
|
}
|
|
2191
2257
|
}
|
|
2192
|
-
class
|
|
2258
|
+
class ms {
|
|
2193
2259
|
constructor(r, s) {
|
|
2194
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2260
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2195
2261
|
{
|
|
2196
2262
|
type: "eval",
|
|
2197
2263
|
el: this.wrapper.unwrap(),
|
|
2198
2264
|
fn: (c, o) => c[o],
|
|
2199
|
-
arg:
|
|
2265
|
+
arg: e
|
|
2200
2266
|
},
|
|
2201
2267
|
i,
|
|
2202
|
-
`toHaveProp("${
|
|
2203
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
2268
|
+
`toHaveProp("${e}", ${i})`
|
|
2269
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2204
2270
|
{
|
|
2205
2271
|
type: "eval",
|
|
2206
2272
|
el: this.wrapper.unwrap(),
|
|
2207
2273
|
fn: m
|
|
2208
2274
|
},
|
|
2209
|
-
|
|
2275
|
+
e,
|
|
2210
2276
|
"toHaveVisibleError(${value})"
|
|
2211
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
2277
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2212
2278
|
{
|
|
2213
2279
|
type: "eval",
|
|
2214
2280
|
el: this.wrapper.unwrap(),
|
|
2215
2281
|
fn: u
|
|
2216
2282
|
},
|
|
2217
|
-
|
|
2283
|
+
e,
|
|
2218
2284
|
"toHaveValue(${value})"
|
|
2219
2285
|
)), this.toBeChecked = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
2220
2286
|
{
|
|
@@ -2235,271 +2301,301 @@ class is {
|
|
|
2235
2301
|
));
|
|
2236
2302
|
}
|
|
2237
2303
|
}
|
|
2238
|
-
const
|
|
2304
|
+
const jt = {
|
|
2239
2305
|
name: "radio-group"
|
|
2240
2306
|
};
|
|
2241
|
-
class
|
|
2307
|
+
class fs extends n {
|
|
2242
2308
|
constructor() {
|
|
2243
|
-
super(...arguments), this.type = "radioGroup", this.componentInfo =
|
|
2309
|
+
super(...arguments), this.type = "radioGroup", this.componentInfo = jt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2244
2310
|
}
|
|
2245
2311
|
}
|
|
2246
|
-
class
|
|
2312
|
+
class Es extends a {
|
|
2247
2313
|
constructor() {
|
|
2248
|
-
super(...arguments), this.componentInfo =
|
|
2314
|
+
super(...arguments), this.componentInfo = jt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2249
2315
|
}
|
|
2250
2316
|
wrap(r) {
|
|
2251
|
-
return new
|
|
2317
|
+
return new fs(this.ctx, r);
|
|
2252
2318
|
}
|
|
2253
2319
|
}
|
|
2254
|
-
class
|
|
2320
|
+
class ys {
|
|
2255
2321
|
constructor(r, s) {
|
|
2256
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2322
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2257
2323
|
{
|
|
2258
2324
|
type: "eval",
|
|
2259
2325
|
el: this.wrapper.unwrap(),
|
|
2260
2326
|
fn: (c, o) => c[o],
|
|
2261
|
-
arg:
|
|
2327
|
+
arg: e
|
|
2262
2328
|
},
|
|
2263
2329
|
i,
|
|
2264
|
-
`toHaveProp("${
|
|
2330
|
+
`toHaveProp("${e}", ${i})`
|
|
2265
2331
|
));
|
|
2266
2332
|
}
|
|
2267
2333
|
}
|
|
2268
|
-
const
|
|
2334
|
+
const _t = {
|
|
2269
2335
|
name: "range-slider"
|
|
2270
2336
|
};
|
|
2271
|
-
class
|
|
2337
|
+
class Is extends n {
|
|
2272
2338
|
constructor() {
|
|
2273
|
-
super(...arguments), this.type = "rangeSlider", this.componentInfo =
|
|
2339
|
+
super(...arguments), this.type = "rangeSlider", this.componentInfo = _t, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.slideStartTo = this.ctx.driver.wrapAction(T.bind(this, () => this.track(), () => this.startThumb())), this.slideEndTo = this.ctx.driver.wrapAction(T.bind(this, () => this.track(), () => this.endThumb())), this.track = v.bind(this, ".control"), this.startThumb = v.bind(this, "#start-thumb"), this.endThumb = v.bind(this, "#end-thumb");
|
|
2274
2340
|
}
|
|
2275
2341
|
}
|
|
2276
|
-
class
|
|
2342
|
+
class gs extends a {
|
|
2277
2343
|
constructor() {
|
|
2278
|
-
super(...arguments), this.componentInfo =
|
|
2344
|
+
super(...arguments), this.componentInfo = _t, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2279
2345
|
}
|
|
2280
2346
|
wrap(r) {
|
|
2281
|
-
return new
|
|
2347
|
+
return new Is(this.ctx, r);
|
|
2282
2348
|
}
|
|
2283
2349
|
}
|
|
2284
|
-
class
|
|
2350
|
+
class As {
|
|
2285
2351
|
constructor(r, s) {
|
|
2286
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2352
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2287
2353
|
{
|
|
2288
2354
|
type: "eval",
|
|
2289
2355
|
el: this.wrapper.unwrap(),
|
|
2290
2356
|
fn: (c, o) => c[o],
|
|
2291
|
-
arg:
|
|
2357
|
+
arg: e
|
|
2292
2358
|
},
|
|
2293
2359
|
i,
|
|
2294
|
-
`toHaveProp("${
|
|
2295
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
2360
|
+
`toHaveProp("${e}", ${i})`
|
|
2361
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2296
2362
|
{
|
|
2297
2363
|
type: "eval",
|
|
2298
2364
|
el: this.wrapper.unwrap(),
|
|
2299
2365
|
fn: m
|
|
2300
2366
|
},
|
|
2301
|
-
|
|
2367
|
+
e,
|
|
2302
2368
|
"toHaveVisibleError(${value})"
|
|
2303
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
2369
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2304
2370
|
{
|
|
2305
2371
|
type: "eval",
|
|
2306
2372
|
el: this.wrapper.unwrap(),
|
|
2307
2373
|
fn: u
|
|
2308
2374
|
},
|
|
2309
|
-
|
|
2375
|
+
e,
|
|
2310
2376
|
"toHaveValue(${value})"
|
|
2311
|
-
)), this.toHaveRange = this.ctx.driver.wrapExpect((
|
|
2377
|
+
)), this.toHaveRange = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2312
2378
|
{
|
|
2313
2379
|
type: "eval",
|
|
2314
2380
|
el: this.wrapper.unwrap(),
|
|
2315
|
-
fn:
|
|
2381
|
+
fn: Ce
|
|
2316
2382
|
},
|
|
2317
|
-
|
|
2383
|
+
e,
|
|
2318
2384
|
"toHaveRange(${value})"
|
|
2319
2385
|
));
|
|
2320
2386
|
}
|
|
2321
2387
|
}
|
|
2322
|
-
const
|
|
2388
|
+
const zt = {
|
|
2323
2389
|
name: "rich-text-editor"
|
|
2324
2390
|
};
|
|
2325
|
-
class
|
|
2391
|
+
class Hs extends n {
|
|
2326
2392
|
constructor() {
|
|
2327
|
-
super(...arguments), this.type = "richTextEditor", this.componentInfo =
|
|
2393
|
+
super(...arguments), this.type = "richTextEditor", this.componentInfo = zt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2328
2394
|
}
|
|
2329
2395
|
}
|
|
2330
|
-
class
|
|
2396
|
+
class Ps extends a {
|
|
2331
2397
|
constructor() {
|
|
2332
|
-
super(...arguments), this.componentInfo =
|
|
2398
|
+
super(...arguments), this.componentInfo = zt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2333
2399
|
}
|
|
2334
2400
|
wrap(r) {
|
|
2335
|
-
return new
|
|
2401
|
+
return new Hs(this.ctx, r);
|
|
2336
2402
|
}
|
|
2337
2403
|
}
|
|
2338
|
-
class
|
|
2404
|
+
class $s {
|
|
2339
2405
|
constructor(r, s) {
|
|
2340
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2406
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2341
2407
|
{
|
|
2342
2408
|
type: "eval",
|
|
2343
2409
|
el: this.wrapper.unwrap(),
|
|
2344
2410
|
fn: (c, o) => c[o],
|
|
2345
|
-
arg:
|
|
2411
|
+
arg: e
|
|
2346
2412
|
},
|
|
2347
2413
|
i,
|
|
2348
|
-
`toHaveProp("${
|
|
2414
|
+
`toHaveProp("${e}", ${i})`
|
|
2349
2415
|
));
|
|
2350
2416
|
}
|
|
2351
2417
|
}
|
|
2352
|
-
const
|
|
2418
|
+
const Jt = {
|
|
2419
|
+
name: "rich-text-view"
|
|
2420
|
+
};
|
|
2421
|
+
class Ss extends n {
|
|
2422
|
+
constructor() {
|
|
2423
|
+
super(...arguments), this.type = "richTextView", this.componentInfo = Jt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2424
|
+
}
|
|
2425
|
+
}
|
|
2426
|
+
class Cs extends a {
|
|
2427
|
+
constructor() {
|
|
2428
|
+
super(...arguments), this.componentInfo = Jt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2429
|
+
}
|
|
2430
|
+
wrap(r) {
|
|
2431
|
+
return new Ss(this.ctx, r);
|
|
2432
|
+
}
|
|
2433
|
+
}
|
|
2434
|
+
class qs {
|
|
2435
|
+
constructor(r, s) {
|
|
2436
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2437
|
+
{
|
|
2438
|
+
type: "eval",
|
|
2439
|
+
el: this.wrapper.unwrap(),
|
|
2440
|
+
fn: (c, o) => c[o],
|
|
2441
|
+
arg: e
|
|
2442
|
+
},
|
|
2443
|
+
i,
|
|
2444
|
+
`toHaveProp("${e}", ${i})`
|
|
2445
|
+
));
|
|
2446
|
+
}
|
|
2447
|
+
}
|
|
2448
|
+
const Kt = {
|
|
2353
2449
|
name: "searchable-select"
|
|
2354
2450
|
};
|
|
2355
|
-
class
|
|
2451
|
+
class Ts extends n {
|
|
2356
2452
|
constructor() {
|
|
2357
|
-
super(...arguments), this.type = "searchableSelect", this.componentInfo =
|
|
2453
|
+
super(...arguments), this.type = "searchableSelect", this.componentInfo = Kt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.selectOptionByValue = this.ctx.driver.wrapAction(D.bind(this)), this.selectOptionByText = this.ctx.driver.wrapAction(R.bind(this));
|
|
2358
2454
|
}
|
|
2359
2455
|
}
|
|
2360
|
-
class
|
|
2456
|
+
class ks extends a {
|
|
2361
2457
|
constructor() {
|
|
2362
|
-
super(...arguments), this.componentInfo =
|
|
2458
|
+
super(...arguments), this.componentInfo = Kt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2363
2459
|
}
|
|
2364
2460
|
wrap(r) {
|
|
2365
|
-
return new
|
|
2461
|
+
return new Ts(this.ctx, r);
|
|
2366
2462
|
}
|
|
2367
2463
|
}
|
|
2368
|
-
class
|
|
2464
|
+
class Bs {
|
|
2369
2465
|
constructor(r, s) {
|
|
2370
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2466
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2371
2467
|
{
|
|
2372
2468
|
type: "eval",
|
|
2373
2469
|
el: this.wrapper.unwrap(),
|
|
2374
2470
|
fn: (c, o) => c[o],
|
|
2375
|
-
arg:
|
|
2471
|
+
arg: e
|
|
2376
2472
|
},
|
|
2377
2473
|
i,
|
|
2378
|
-
`toHaveProp("${
|
|
2379
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
2474
|
+
`toHaveProp("${e}", ${i})`
|
|
2475
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2380
2476
|
{
|
|
2381
2477
|
type: "eval",
|
|
2382
2478
|
el: this.wrapper.unwrap(),
|
|
2383
2479
|
fn: m
|
|
2384
2480
|
},
|
|
2385
|
-
|
|
2481
|
+
e,
|
|
2386
2482
|
"toHaveVisibleError(${value})"
|
|
2387
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
2483
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2388
2484
|
{
|
|
2389
2485
|
type: "eval",
|
|
2390
2486
|
el: this.wrapper.unwrap(),
|
|
2391
2487
|
fn: w
|
|
2392
2488
|
},
|
|
2393
|
-
|
|
2489
|
+
e,
|
|
2394
2490
|
"toHaveIcon(${value})"
|
|
2395
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
2491
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2396
2492
|
{
|
|
2397
2493
|
type: "eval",
|
|
2398
2494
|
el: this.wrapper.unwrap(),
|
|
2399
2495
|
fn: u
|
|
2400
2496
|
},
|
|
2401
|
-
|
|
2497
|
+
e,
|
|
2402
2498
|
"toHaveValue(${value})"
|
|
2403
|
-
)), this.toHaveValues = this.ctx.driver.wrapExpect((
|
|
2499
|
+
)), this.toHaveValues = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2404
2500
|
{
|
|
2405
2501
|
type: "eval",
|
|
2406
2502
|
el: this.wrapper.unwrap(),
|
|
2407
|
-
fn:
|
|
2503
|
+
fn: Pe
|
|
2408
2504
|
},
|
|
2409
|
-
|
|
2505
|
+
e,
|
|
2410
2506
|
"toHaveValues(${value})"
|
|
2411
|
-
)), this.toHaveSelectedOptions = this.ctx.driver.wrapExpect((
|
|
2507
|
+
)), this.toHaveSelectedOptions = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2412
2508
|
{
|
|
2413
2509
|
type: "eval",
|
|
2414
2510
|
el: this.wrapper.unwrap(),
|
|
2415
|
-
fn:
|
|
2511
|
+
fn: $e
|
|
2416
2512
|
},
|
|
2417
|
-
|
|
2513
|
+
e,
|
|
2418
2514
|
"toHaveSelectedOptions(${value})"
|
|
2419
2515
|
));
|
|
2420
2516
|
}
|
|
2421
2517
|
}
|
|
2422
|
-
const
|
|
2518
|
+
const Qt = {
|
|
2423
2519
|
name: "select"
|
|
2424
2520
|
};
|
|
2425
|
-
class
|
|
2521
|
+
class Vs extends n {
|
|
2426
2522
|
constructor() {
|
|
2427
|
-
super(...arguments), this.type = "select", this.componentInfo =
|
|
2523
|
+
super(...arguments), this.type = "select", this.componentInfo = Qt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.selectOptionByValue = this.ctx.driver.wrapAction(D.bind(this)), this.selectOptionByText = this.ctx.driver.wrapAction(R.bind(this));
|
|
2428
2524
|
}
|
|
2429
2525
|
}
|
|
2430
|
-
class
|
|
2526
|
+
class Ws extends a {
|
|
2431
2527
|
constructor() {
|
|
2432
|
-
super(...arguments), this.componentInfo =
|
|
2528
|
+
super(...arguments), this.componentInfo = Qt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2433
2529
|
}
|
|
2434
2530
|
wrap(r) {
|
|
2435
|
-
return new
|
|
2531
|
+
return new Vs(this.ctx, r);
|
|
2436
2532
|
}
|
|
2437
2533
|
}
|
|
2438
|
-
class
|
|
2534
|
+
class Ds {
|
|
2439
2535
|
constructor(r, s) {
|
|
2440
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2536
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2441
2537
|
{
|
|
2442
2538
|
type: "eval",
|
|
2443
2539
|
el: this.wrapper.unwrap(),
|
|
2444
2540
|
fn: (c, o) => c[o],
|
|
2445
|
-
arg:
|
|
2541
|
+
arg: e
|
|
2446
2542
|
},
|
|
2447
2543
|
i,
|
|
2448
|
-
`toHaveProp("${
|
|
2449
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
2544
|
+
`toHaveProp("${e}", ${i})`
|
|
2545
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2450
2546
|
{
|
|
2451
2547
|
type: "eval",
|
|
2452
2548
|
el: this.wrapper.unwrap(),
|
|
2453
2549
|
fn: m
|
|
2454
2550
|
},
|
|
2455
|
-
|
|
2551
|
+
e,
|
|
2456
2552
|
"toHaveVisibleError(${value})"
|
|
2457
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
2553
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2458
2554
|
{
|
|
2459
2555
|
type: "eval",
|
|
2460
2556
|
el: this.wrapper.unwrap(),
|
|
2461
2557
|
fn: w
|
|
2462
2558
|
},
|
|
2463
|
-
|
|
2559
|
+
e,
|
|
2464
2560
|
"toHaveIcon(${value})"
|
|
2465
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
2561
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2466
2562
|
{
|
|
2467
2563
|
type: "eval",
|
|
2468
2564
|
el: this.wrapper.unwrap(),
|
|
2469
2565
|
fn: u
|
|
2470
2566
|
},
|
|
2471
|
-
|
|
2567
|
+
e,
|
|
2472
2568
|
"toHaveValue(${value})"
|
|
2473
2569
|
));
|
|
2474
2570
|
}
|
|
2475
2571
|
}
|
|
2476
|
-
const
|
|
2572
|
+
const Xt = {
|
|
2477
2573
|
name: "selectable-box"
|
|
2478
2574
|
};
|
|
2479
|
-
class
|
|
2575
|
+
class Rs extends n {
|
|
2480
2576
|
constructor() {
|
|
2481
|
-
super(...arguments), this.type = "selectableBox", this.componentInfo =
|
|
2577
|
+
super(...arguments), this.type = "selectableBox", this.componentInfo = Xt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.check = this.ctx.driver.wrapAction(J.bind(this, () => this.control())), this.uncheck = this.ctx.driver.wrapAction(K.bind(this, () => this.control())), this.control = Me.bind(this, "[data-vvd-component].control", "div.control");
|
|
2482
2578
|
}
|
|
2483
2579
|
}
|
|
2484
|
-
class
|
|
2580
|
+
class Gs extends a {
|
|
2485
2581
|
constructor() {
|
|
2486
|
-
super(...arguments), this.componentInfo =
|
|
2582
|
+
super(...arguments), this.componentInfo = Xt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2487
2583
|
}
|
|
2488
2584
|
wrap(r) {
|
|
2489
|
-
return new
|
|
2585
|
+
return new Rs(this.ctx, r);
|
|
2490
2586
|
}
|
|
2491
2587
|
}
|
|
2492
|
-
class
|
|
2588
|
+
class Ls {
|
|
2493
2589
|
constructor(r, s) {
|
|
2494
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2590
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2495
2591
|
{
|
|
2496
2592
|
type: "eval",
|
|
2497
2593
|
el: this.wrapper.unwrap(),
|
|
2498
2594
|
fn: (c, o) => c[o],
|
|
2499
|
-
arg:
|
|
2595
|
+
arg: e
|
|
2500
2596
|
},
|
|
2501
2597
|
i,
|
|
2502
|
-
`toHaveProp("${
|
|
2598
|
+
`toHaveProp("${e}", ${i})`
|
|
2503
2599
|
)), this.toBeChecked = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
2504
2600
|
{
|
|
2505
2601
|
type: "eval",
|
|
@@ -2519,200 +2615,200 @@ class ys {
|
|
|
2519
2615
|
));
|
|
2520
2616
|
}
|
|
2521
2617
|
}
|
|
2522
|
-
const
|
|
2618
|
+
const Yt = {
|
|
2523
2619
|
name: "side-drawer"
|
|
2524
2620
|
};
|
|
2525
|
-
class
|
|
2621
|
+
class Os extends n {
|
|
2526
2622
|
constructor() {
|
|
2527
|
-
super(...arguments), this.type = "sideDrawer", this.componentInfo =
|
|
2623
|
+
super(...arguments), this.type = "sideDrawer", this.componentInfo = Yt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2528
2624
|
}
|
|
2529
2625
|
}
|
|
2530
|
-
class
|
|
2626
|
+
class Fs extends a {
|
|
2531
2627
|
constructor() {
|
|
2532
|
-
super(...arguments), this.componentInfo =
|
|
2628
|
+
super(...arguments), this.componentInfo = Yt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2533
2629
|
}
|
|
2534
2630
|
wrap(r) {
|
|
2535
|
-
return new
|
|
2631
|
+
return new Os(this.ctx, r);
|
|
2536
2632
|
}
|
|
2537
2633
|
}
|
|
2538
|
-
class
|
|
2634
|
+
class Us {
|
|
2539
2635
|
constructor(r, s) {
|
|
2540
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2636
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2541
2637
|
{
|
|
2542
2638
|
type: "eval",
|
|
2543
2639
|
el: this.wrapper.unwrap(),
|
|
2544
2640
|
fn: (c, o) => c[o],
|
|
2545
|
-
arg:
|
|
2641
|
+
arg: e
|
|
2546
2642
|
},
|
|
2547
2643
|
i,
|
|
2548
|
-
`toHaveProp("${
|
|
2644
|
+
`toHaveProp("${e}", ${i})`
|
|
2549
2645
|
));
|
|
2550
2646
|
}
|
|
2551
2647
|
}
|
|
2552
|
-
const
|
|
2648
|
+
const Zt = {
|
|
2553
2649
|
name: "simple-color-picker"
|
|
2554
2650
|
};
|
|
2555
|
-
class
|
|
2651
|
+
class Ms extends n {
|
|
2556
2652
|
constructor() {
|
|
2557
|
-
super(...arguments), this.type = "simpleColorPicker", this.componentInfo =
|
|
2653
|
+
super(...arguments), this.type = "simpleColorPicker", this.componentInfo = Zt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2558
2654
|
}
|
|
2559
2655
|
}
|
|
2560
|
-
class
|
|
2656
|
+
class js extends a {
|
|
2561
2657
|
constructor() {
|
|
2562
|
-
super(...arguments), this.componentInfo =
|
|
2658
|
+
super(...arguments), this.componentInfo = Zt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2563
2659
|
}
|
|
2564
2660
|
wrap(r) {
|
|
2565
|
-
return new
|
|
2661
|
+
return new Ms(this.ctx, r);
|
|
2566
2662
|
}
|
|
2567
2663
|
}
|
|
2568
|
-
class
|
|
2664
|
+
class _s {
|
|
2569
2665
|
constructor(r, s) {
|
|
2570
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2666
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2571
2667
|
{
|
|
2572
2668
|
type: "eval",
|
|
2573
2669
|
el: this.wrapper.unwrap(),
|
|
2574
2670
|
fn: (c, o) => c[o],
|
|
2575
|
-
arg:
|
|
2671
|
+
arg: e
|
|
2576
2672
|
},
|
|
2577
2673
|
i,
|
|
2578
|
-
`toHaveProp("${
|
|
2579
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
2674
|
+
`toHaveProp("${e}", ${i})`
|
|
2675
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2580
2676
|
{
|
|
2581
2677
|
type: "eval",
|
|
2582
2678
|
el: this.wrapper.unwrap(),
|
|
2583
2679
|
fn: m
|
|
2584
2680
|
},
|
|
2585
|
-
|
|
2681
|
+
e,
|
|
2586
2682
|
"toHaveVisibleError(${value})"
|
|
2587
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
2683
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2588
2684
|
{
|
|
2589
2685
|
type: "eval",
|
|
2590
2686
|
el: this.wrapper.unwrap(),
|
|
2591
2687
|
fn: u
|
|
2592
2688
|
},
|
|
2593
|
-
|
|
2689
|
+
e,
|
|
2594
2690
|
"toHaveValue(${value})"
|
|
2595
2691
|
));
|
|
2596
2692
|
}
|
|
2597
2693
|
}
|
|
2598
|
-
const
|
|
2694
|
+
const Nt = {
|
|
2599
2695
|
name: "slider"
|
|
2600
2696
|
};
|
|
2601
|
-
class
|
|
2697
|
+
class zs extends n {
|
|
2602
2698
|
constructor() {
|
|
2603
|
-
super(...arguments), this.type = "slider", this.componentInfo =
|
|
2699
|
+
super(...arguments), this.type = "slider", this.componentInfo = Nt, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.slideTo = this.ctx.driver.wrapAction(T.bind(this, () => this.track(), () => this.thumb())), this.track = v.bind(this, ".control"), this.thumb = v.bind(this, ".thumb-container");
|
|
2604
2700
|
}
|
|
2605
2701
|
}
|
|
2606
|
-
class
|
|
2702
|
+
class Js extends a {
|
|
2607
2703
|
constructor() {
|
|
2608
|
-
super(...arguments), this.componentInfo =
|
|
2704
|
+
super(...arguments), this.componentInfo = Nt, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2609
2705
|
}
|
|
2610
2706
|
wrap(r) {
|
|
2611
|
-
return new
|
|
2707
|
+
return new zs(this.ctx, r);
|
|
2612
2708
|
}
|
|
2613
2709
|
}
|
|
2614
|
-
class
|
|
2710
|
+
class Ks {
|
|
2615
2711
|
constructor(r, s) {
|
|
2616
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2712
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2617
2713
|
{
|
|
2618
2714
|
type: "eval",
|
|
2619
2715
|
el: this.wrapper.unwrap(),
|
|
2620
2716
|
fn: (c, o) => c[o],
|
|
2621
|
-
arg:
|
|
2717
|
+
arg: e
|
|
2622
2718
|
},
|
|
2623
2719
|
i,
|
|
2624
|
-
`toHaveProp("${
|
|
2625
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
2720
|
+
`toHaveProp("${e}", ${i})`
|
|
2721
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2626
2722
|
{
|
|
2627
2723
|
type: "eval",
|
|
2628
2724
|
el: this.wrapper.unwrap(),
|
|
2629
2725
|
fn: u
|
|
2630
2726
|
},
|
|
2631
|
-
|
|
2727
|
+
e,
|
|
2632
2728
|
"toHaveValue(${value})"
|
|
2633
|
-
)), this.toHaveValueAsNumber = this.ctx.driver.wrapExpect((
|
|
2729
|
+
)), this.toHaveValueAsNumber = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2634
2730
|
{
|
|
2635
2731
|
type: "eval",
|
|
2636
2732
|
el: this.wrapper.unwrap(),
|
|
2637
2733
|
fn: z
|
|
2638
2734
|
},
|
|
2639
|
-
|
|
2735
|
+
e,
|
|
2640
2736
|
"toHaveValueAsNumber(${value})"
|
|
2641
2737
|
));
|
|
2642
2738
|
}
|
|
2643
2739
|
}
|
|
2644
|
-
const
|
|
2740
|
+
const te = {
|
|
2645
2741
|
name: "split-button"
|
|
2646
2742
|
};
|
|
2647
|
-
class
|
|
2743
|
+
class Qs extends n {
|
|
2648
2744
|
constructor() {
|
|
2649
|
-
super(...arguments), this.type = "splitButton", this.componentInfo =
|
|
2745
|
+
super(...arguments), this.type = "splitButton", this.componentInfo = te, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.clickAction = this.ctx.driver.wrapAction(b.bind(this, () => this.actionButton())), this.clickIndicator = this.ctx.driver.wrapAction(b.bind(this, () => this.indicatorButton())), this.actionButton = v.bind(this, "button.control"), this.indicatorButton = v.bind(this, "button.indicator");
|
|
2650
2746
|
}
|
|
2651
2747
|
}
|
|
2652
|
-
class
|
|
2748
|
+
class Xs extends a {
|
|
2653
2749
|
constructor() {
|
|
2654
|
-
super(...arguments), this.componentInfo =
|
|
2750
|
+
super(...arguments), this.componentInfo = te, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2655
2751
|
}
|
|
2656
2752
|
wrap(r) {
|
|
2657
|
-
return new
|
|
2753
|
+
return new Qs(this.ctx, r);
|
|
2658
2754
|
}
|
|
2659
2755
|
}
|
|
2660
|
-
class
|
|
2756
|
+
class Ys {
|
|
2661
2757
|
constructor(r, s) {
|
|
2662
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2758
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2663
2759
|
{
|
|
2664
2760
|
type: "eval",
|
|
2665
2761
|
el: this.wrapper.unwrap(),
|
|
2666
2762
|
fn: (c, o) => c[o],
|
|
2667
|
-
arg:
|
|
2763
|
+
arg: e
|
|
2668
2764
|
},
|
|
2669
2765
|
i,
|
|
2670
|
-
`toHaveProp("${
|
|
2671
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
2766
|
+
`toHaveProp("${e}", ${i})`
|
|
2767
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2672
2768
|
{
|
|
2673
2769
|
type: "eval",
|
|
2674
2770
|
el: this.wrapper.unwrap(),
|
|
2675
2771
|
fn: w
|
|
2676
2772
|
},
|
|
2677
|
-
|
|
2773
|
+
e,
|
|
2678
2774
|
"toHaveIcon(${value})"
|
|
2679
2775
|
));
|
|
2680
2776
|
}
|
|
2681
2777
|
}
|
|
2682
|
-
const
|
|
2778
|
+
const ee = {
|
|
2683
2779
|
name: "switch"
|
|
2684
2780
|
};
|
|
2685
|
-
class
|
|
2781
|
+
class Zs extends n {
|
|
2686
2782
|
constructor() {
|
|
2687
|
-
super(...arguments), this.type = "switch", this.componentInfo =
|
|
2783
|
+
super(...arguments), this.type = "switch", this.componentInfo = ee, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.check = this.ctx.driver.wrapAction(b.bind(this, () => this.switch())), this.uncheck = this.ctx.driver.wrapAction(b.bind(this, () => this.switch())), this.switch = v.bind(this, ".switch");
|
|
2688
2784
|
}
|
|
2689
2785
|
}
|
|
2690
|
-
class
|
|
2786
|
+
class Ns extends a {
|
|
2691
2787
|
constructor() {
|
|
2692
|
-
super(...arguments), this.componentInfo =
|
|
2788
|
+
super(...arguments), this.componentInfo = ee, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2693
2789
|
}
|
|
2694
2790
|
wrap(r) {
|
|
2695
|
-
return new
|
|
2791
|
+
return new Zs(this.ctx, r);
|
|
2696
2792
|
}
|
|
2697
2793
|
}
|
|
2698
|
-
class
|
|
2794
|
+
class tc {
|
|
2699
2795
|
constructor(r, s) {
|
|
2700
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2796
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2701
2797
|
{
|
|
2702
2798
|
type: "eval",
|
|
2703
2799
|
el: this.wrapper.unwrap(),
|
|
2704
2800
|
fn: (c, o) => c[o],
|
|
2705
|
-
arg:
|
|
2801
|
+
arg: e
|
|
2706
2802
|
},
|
|
2707
2803
|
i,
|
|
2708
|
-
`toHaveProp("${
|
|
2709
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
2804
|
+
`toHaveProp("${e}", ${i})`
|
|
2805
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2710
2806
|
{
|
|
2711
2807
|
type: "eval",
|
|
2712
2808
|
el: this.wrapper.unwrap(),
|
|
2713
2809
|
fn: u
|
|
2714
2810
|
},
|
|
2715
|
-
|
|
2811
|
+
e,
|
|
2716
2812
|
"toHaveValue(${value})"
|
|
2717
2813
|
)), this.toBeChecked = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
2718
2814
|
{
|
|
@@ -2733,40 +2829,40 @@ class Ds {
|
|
|
2733
2829
|
));
|
|
2734
2830
|
}
|
|
2735
2831
|
}
|
|
2736
|
-
const
|
|
2832
|
+
const re = {
|
|
2737
2833
|
name: "tab"
|
|
2738
2834
|
};
|
|
2739
|
-
class
|
|
2835
|
+
class ec extends n {
|
|
2740
2836
|
constructor() {
|
|
2741
|
-
super(...arguments), this.type = "tab", this.componentInfo =
|
|
2837
|
+
super(...arguments), this.type = "tab", this.componentInfo = re, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.select = this.ctx.driver.wrapAction(b.bind(this, () => this.base())), this.base = v.bind(this, ".base");
|
|
2742
2838
|
}
|
|
2743
2839
|
}
|
|
2744
|
-
class
|
|
2840
|
+
class rc extends a {
|
|
2745
2841
|
constructor() {
|
|
2746
|
-
super(...arguments), this.componentInfo =
|
|
2842
|
+
super(...arguments), this.componentInfo = re, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2747
2843
|
}
|
|
2748
2844
|
wrap(r) {
|
|
2749
|
-
return new
|
|
2845
|
+
return new ec(this.ctx, r);
|
|
2750
2846
|
}
|
|
2751
2847
|
}
|
|
2752
|
-
class
|
|
2848
|
+
class ic {
|
|
2753
2849
|
constructor(r, s) {
|
|
2754
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
2850
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2755
2851
|
{
|
|
2756
2852
|
type: "eval",
|
|
2757
2853
|
el: this.wrapper.unwrap(),
|
|
2758
2854
|
fn: (c, o) => c[o],
|
|
2759
|
-
arg:
|
|
2855
|
+
arg: e
|
|
2760
2856
|
},
|
|
2761
2857
|
i,
|
|
2762
|
-
`toHaveProp("${
|
|
2763
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
2858
|
+
`toHaveProp("${e}", ${i})`
|
|
2859
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2764
2860
|
{
|
|
2765
2861
|
type: "eval",
|
|
2766
2862
|
el: this.wrapper.unwrap(),
|
|
2767
2863
|
fn: w
|
|
2768
2864
|
},
|
|
2769
|
-
|
|
2865
|
+
e,
|
|
2770
2866
|
"toHaveIcon(${value})"
|
|
2771
2867
|
)), this.toBeActive = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
2772
2868
|
{
|
|
@@ -2787,93 +2883,231 @@ class Ls {
|
|
|
2787
2883
|
));
|
|
2788
2884
|
}
|
|
2789
2885
|
}
|
|
2790
|
-
const
|
|
2886
|
+
const ie = {
|
|
2791
2887
|
name: "tab-panel"
|
|
2792
2888
|
};
|
|
2793
|
-
class
|
|
2889
|
+
class sc extends n {
|
|
2794
2890
|
constructor() {
|
|
2795
|
-
super(...arguments), this.type = "tabPanel", this.componentInfo =
|
|
2891
|
+
super(...arguments), this.type = "tabPanel", this.componentInfo = ie, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2796
2892
|
}
|
|
2797
2893
|
}
|
|
2798
|
-
class
|
|
2894
|
+
class cc extends a {
|
|
2799
2895
|
constructor() {
|
|
2800
|
-
super(...arguments), this.componentInfo =
|
|
2896
|
+
super(...arguments), this.componentInfo = ie, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2801
2897
|
}
|
|
2802
2898
|
wrap(r) {
|
|
2803
|
-
return new
|
|
2899
|
+
return new sc(this.ctx, r);
|
|
2804
2900
|
}
|
|
2805
2901
|
}
|
|
2806
|
-
class
|
|
2902
|
+
class oc {
|
|
2807
2903
|
constructor(r, s) {
|
|
2808
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = (
|
|
2904
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
2809
2905
|
throw new Error("Component does not have props.");
|
|
2810
2906
|
};
|
|
2811
2907
|
}
|
|
2812
2908
|
}
|
|
2813
|
-
const
|
|
2909
|
+
const se = {
|
|
2910
|
+
name: "table"
|
|
2911
|
+
};
|
|
2912
|
+
class nc extends n {
|
|
2913
|
+
constructor() {
|
|
2914
|
+
super(...arguments), this.type = "table", this.componentInfo = se, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2915
|
+
}
|
|
2916
|
+
}
|
|
2917
|
+
class ac extends a {
|
|
2918
|
+
constructor() {
|
|
2919
|
+
super(...arguments), this.componentInfo = se, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2920
|
+
}
|
|
2921
|
+
wrap(r) {
|
|
2922
|
+
return new nc(this.ctx, r);
|
|
2923
|
+
}
|
|
2924
|
+
}
|
|
2925
|
+
class hc {
|
|
2926
|
+
constructor(r, s) {
|
|
2927
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
2928
|
+
throw new Error("Component does not have props.");
|
|
2929
|
+
};
|
|
2930
|
+
}
|
|
2931
|
+
}
|
|
2932
|
+
const ce = {
|
|
2933
|
+
name: "table-body"
|
|
2934
|
+
};
|
|
2935
|
+
class pc extends n {
|
|
2936
|
+
constructor() {
|
|
2937
|
+
super(...arguments), this.type = "tableBody", this.componentInfo = ce, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2938
|
+
}
|
|
2939
|
+
}
|
|
2940
|
+
class dc extends a {
|
|
2941
|
+
constructor() {
|
|
2942
|
+
super(...arguments), this.componentInfo = ce, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2943
|
+
}
|
|
2944
|
+
wrap(r) {
|
|
2945
|
+
return new pc(this.ctx, r);
|
|
2946
|
+
}
|
|
2947
|
+
}
|
|
2948
|
+
class lc {
|
|
2949
|
+
constructor(r, s) {
|
|
2950
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
2951
|
+
throw new Error("Component does not have props.");
|
|
2952
|
+
};
|
|
2953
|
+
}
|
|
2954
|
+
}
|
|
2955
|
+
const oe = {
|
|
2956
|
+
name: "table-cell"
|
|
2957
|
+
};
|
|
2958
|
+
class xc extends n {
|
|
2959
|
+
constructor() {
|
|
2960
|
+
super(...arguments), this.type = "tableCell", this.componentInfo = oe, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2961
|
+
}
|
|
2962
|
+
}
|
|
2963
|
+
class vc extends a {
|
|
2964
|
+
constructor() {
|
|
2965
|
+
super(...arguments), this.componentInfo = oe, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2966
|
+
}
|
|
2967
|
+
wrap(r) {
|
|
2968
|
+
return new xc(this.ctx, r);
|
|
2969
|
+
}
|
|
2970
|
+
}
|
|
2971
|
+
class uc {
|
|
2972
|
+
constructor(r, s) {
|
|
2973
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
2974
|
+
throw new Error("Component does not have props.");
|
|
2975
|
+
};
|
|
2976
|
+
}
|
|
2977
|
+
}
|
|
2978
|
+
const ne = {
|
|
2979
|
+
name: "table-head"
|
|
2980
|
+
};
|
|
2981
|
+
class wc extends n {
|
|
2982
|
+
constructor() {
|
|
2983
|
+
super(...arguments), this.type = "tableHead", this.componentInfo = ne, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2984
|
+
}
|
|
2985
|
+
}
|
|
2986
|
+
class bc extends a {
|
|
2987
|
+
constructor() {
|
|
2988
|
+
super(...arguments), this.componentInfo = ne, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2989
|
+
}
|
|
2990
|
+
wrap(r) {
|
|
2991
|
+
return new wc(this.ctx, r);
|
|
2992
|
+
}
|
|
2993
|
+
}
|
|
2994
|
+
class mc {
|
|
2995
|
+
constructor(r, s) {
|
|
2996
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
2997
|
+
throw new Error("Component does not have props.");
|
|
2998
|
+
};
|
|
2999
|
+
}
|
|
3000
|
+
}
|
|
3001
|
+
const ae = {
|
|
3002
|
+
name: "table-header-cell"
|
|
3003
|
+
};
|
|
3004
|
+
class fc extends n {
|
|
3005
|
+
constructor() {
|
|
3006
|
+
super(...arguments), this.type = "tableHeaderCell", this.componentInfo = ae, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
3007
|
+
}
|
|
3008
|
+
}
|
|
3009
|
+
class Ec extends a {
|
|
3010
|
+
constructor() {
|
|
3011
|
+
super(...arguments), this.componentInfo = ae, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
3012
|
+
}
|
|
3013
|
+
wrap(r) {
|
|
3014
|
+
return new fc(this.ctx, r);
|
|
3015
|
+
}
|
|
3016
|
+
}
|
|
3017
|
+
class yc {
|
|
3018
|
+
constructor(r, s) {
|
|
3019
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
3020
|
+
throw new Error("Component does not have props.");
|
|
3021
|
+
};
|
|
3022
|
+
}
|
|
3023
|
+
}
|
|
3024
|
+
const he = {
|
|
3025
|
+
name: "table-row"
|
|
3026
|
+
};
|
|
3027
|
+
class Ic extends n {
|
|
3028
|
+
constructor() {
|
|
3029
|
+
super(...arguments), this.type = "tableRow", this.componentInfo = he, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
3030
|
+
}
|
|
3031
|
+
}
|
|
3032
|
+
class gc extends a {
|
|
3033
|
+
constructor() {
|
|
3034
|
+
super(...arguments), this.componentInfo = he, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
3035
|
+
}
|
|
3036
|
+
wrap(r) {
|
|
3037
|
+
return new Ic(this.ctx, r);
|
|
3038
|
+
}
|
|
3039
|
+
}
|
|
3040
|
+
class Ac {
|
|
3041
|
+
constructor(r, s) {
|
|
3042
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
3043
|
+
throw new Error("Component does not have props.");
|
|
3044
|
+
};
|
|
3045
|
+
}
|
|
3046
|
+
}
|
|
3047
|
+
const pe = {
|
|
2814
3048
|
name: "tabs"
|
|
2815
3049
|
};
|
|
2816
|
-
class
|
|
3050
|
+
class Hc extends n {
|
|
2817
3051
|
constructor() {
|
|
2818
|
-
super(...arguments), this.type = "tabs", this.componentInfo =
|
|
3052
|
+
super(...arguments), this.type = "tabs", this.componentInfo = pe, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2819
3053
|
}
|
|
2820
3054
|
}
|
|
2821
|
-
class
|
|
3055
|
+
class Pc extends a {
|
|
2822
3056
|
constructor() {
|
|
2823
|
-
super(...arguments), this.componentInfo =
|
|
3057
|
+
super(...arguments), this.componentInfo = pe, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2824
3058
|
}
|
|
2825
3059
|
wrap(r) {
|
|
2826
|
-
return new
|
|
3060
|
+
return new Hc(this.ctx, r);
|
|
2827
3061
|
}
|
|
2828
3062
|
}
|
|
2829
|
-
class
|
|
3063
|
+
class $c {
|
|
2830
3064
|
constructor(r, s) {
|
|
2831
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3065
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2832
3066
|
{
|
|
2833
3067
|
type: "eval",
|
|
2834
3068
|
el: this.wrapper.unwrap(),
|
|
2835
3069
|
fn: (c, o) => c[o],
|
|
2836
|
-
arg:
|
|
3070
|
+
arg: e
|
|
2837
3071
|
},
|
|
2838
3072
|
i,
|
|
2839
|
-
`toHaveProp("${
|
|
3073
|
+
`toHaveProp("${e}", ${i})`
|
|
2840
3074
|
));
|
|
2841
3075
|
}
|
|
2842
3076
|
}
|
|
2843
|
-
const
|
|
3077
|
+
const de = {
|
|
2844
3078
|
name: "tag"
|
|
2845
3079
|
};
|
|
2846
|
-
class
|
|
3080
|
+
class Sc extends n {
|
|
2847
3081
|
constructor() {
|
|
2848
|
-
super(...arguments), this.type = "tag", this.componentInfo =
|
|
3082
|
+
super(...arguments), this.type = "tag", this.componentInfo = de, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.click = this.ctx.driver.wrapAction(b.bind(this, () => this.base())), this.remove = this.ctx.driver.wrapAction(b.bind(this, () => this.dismissButton())), this.select = this.ctx.driver.wrapAction(M.bind(this, !0)), this.unselect = this.ctx.driver.wrapAction(M.bind(this, !1)), this.base = v.bind(this, ".base"), this.dismissButton = v.bind(this, ".dismiss-button");
|
|
2849
3083
|
}
|
|
2850
3084
|
}
|
|
2851
|
-
class
|
|
3085
|
+
class Cc extends a {
|
|
2852
3086
|
constructor() {
|
|
2853
|
-
super(...arguments), this.componentInfo =
|
|
3087
|
+
super(...arguments), this.componentInfo = de, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2854
3088
|
}
|
|
2855
3089
|
wrap(r) {
|
|
2856
|
-
return new
|
|
3090
|
+
return new Sc(this.ctx, r);
|
|
2857
3091
|
}
|
|
2858
3092
|
}
|
|
2859
|
-
class
|
|
3093
|
+
class qc {
|
|
2860
3094
|
constructor(r, s) {
|
|
2861
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3095
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2862
3096
|
{
|
|
2863
3097
|
type: "eval",
|
|
2864
3098
|
el: this.wrapper.unwrap(),
|
|
2865
3099
|
fn: (c, o) => c[o],
|
|
2866
|
-
arg:
|
|
3100
|
+
arg: e
|
|
2867
3101
|
},
|
|
2868
3102
|
i,
|
|
2869
|
-
`toHaveProp("${
|
|
2870
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
3103
|
+
`toHaveProp("${e}", ${i})`
|
|
3104
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2871
3105
|
{
|
|
2872
3106
|
type: "eval",
|
|
2873
3107
|
el: this.wrapper.unwrap(),
|
|
2874
3108
|
fn: w
|
|
2875
3109
|
},
|
|
2876
|
-
|
|
3110
|
+
e,
|
|
2877
3111
|
"toHaveIcon(${value})"
|
|
2878
3112
|
)), this.toBeSelected = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
2879
3113
|
{
|
|
@@ -2895,7 +3129,7 @@ class Ks {
|
|
|
2895
3129
|
{
|
|
2896
3130
|
type: "eval",
|
|
2897
3131
|
el: this.wrapper.unwrap(),
|
|
2898
|
-
fn:
|
|
3132
|
+
fn: C
|
|
2899
3133
|
},
|
|
2900
3134
|
!0,
|
|
2901
3135
|
"toBeDisabled()"
|
|
@@ -2903,209 +3137,209 @@ class Ks {
|
|
|
2903
3137
|
{
|
|
2904
3138
|
type: "eval",
|
|
2905
3139
|
el: this.wrapper.unwrap(),
|
|
2906
|
-
fn:
|
|
3140
|
+
fn: C
|
|
2907
3141
|
},
|
|
2908
3142
|
!1,
|
|
2909
3143
|
"notToBeDisabled()"
|
|
2910
3144
|
));
|
|
2911
3145
|
}
|
|
2912
3146
|
}
|
|
2913
|
-
const
|
|
3147
|
+
const le = {
|
|
2914
3148
|
name: "tag-group"
|
|
2915
3149
|
};
|
|
2916
|
-
class
|
|
3150
|
+
class Tc extends n {
|
|
2917
3151
|
constructor() {
|
|
2918
|
-
super(...arguments), this.type = "tagGroup", this.componentInfo =
|
|
3152
|
+
super(...arguments), this.type = "tagGroup", this.componentInfo = le, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
2919
3153
|
}
|
|
2920
3154
|
}
|
|
2921
|
-
class
|
|
3155
|
+
class kc extends a {
|
|
2922
3156
|
constructor() {
|
|
2923
|
-
super(...arguments), this.componentInfo =
|
|
3157
|
+
super(...arguments), this.componentInfo = le, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
2924
3158
|
}
|
|
2925
3159
|
wrap(r) {
|
|
2926
|
-
return new
|
|
3160
|
+
return new Tc(this.ctx, r);
|
|
2927
3161
|
}
|
|
2928
3162
|
}
|
|
2929
|
-
class
|
|
3163
|
+
class Bc {
|
|
2930
3164
|
constructor(r, s) {
|
|
2931
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = (
|
|
3165
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = (e, i) => {
|
|
2932
3166
|
throw new Error("Component does not have props.");
|
|
2933
3167
|
};
|
|
2934
3168
|
}
|
|
2935
3169
|
}
|
|
2936
|
-
const
|
|
3170
|
+
const xe = {
|
|
2937
3171
|
name: "text-area"
|
|
2938
3172
|
};
|
|
2939
|
-
class
|
|
3173
|
+
class Vc extends n {
|
|
2940
3174
|
constructor() {
|
|
2941
|
-
super(...arguments), this.type = "textArea", this.componentInfo =
|
|
3175
|
+
super(...arguments), this.type = "textArea", this.componentInfo = xe, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.fill = this.ctx.driver.wrapAction(V.bind(this, () => this.control())), this.clear = this.ctx.driver.wrapAction(W.bind(this, () => this.control())), this.control = v.bind(this, ".control");
|
|
2942
3176
|
}
|
|
2943
3177
|
}
|
|
2944
|
-
class
|
|
3178
|
+
class Wc extends a {
|
|
2945
3179
|
constructor() {
|
|
2946
|
-
super(...arguments), this.componentInfo =
|
|
3180
|
+
super(...arguments), this.componentInfo = xe, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2947
3181
|
}
|
|
2948
3182
|
wrap(r) {
|
|
2949
|
-
return new
|
|
3183
|
+
return new Vc(this.ctx, r);
|
|
2950
3184
|
}
|
|
2951
3185
|
}
|
|
2952
|
-
class
|
|
3186
|
+
class Dc {
|
|
2953
3187
|
constructor(r, s) {
|
|
2954
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3188
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
2955
3189
|
{
|
|
2956
3190
|
type: "eval",
|
|
2957
3191
|
el: this.wrapper.unwrap(),
|
|
2958
3192
|
fn: (c, o) => c[o],
|
|
2959
|
-
arg:
|
|
3193
|
+
arg: e
|
|
2960
3194
|
},
|
|
2961
3195
|
i,
|
|
2962
|
-
`toHaveProp("${
|
|
2963
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
3196
|
+
`toHaveProp("${e}", ${i})`
|
|
3197
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2964
3198
|
{
|
|
2965
3199
|
type: "eval",
|
|
2966
3200
|
el: this.wrapper.unwrap(),
|
|
2967
3201
|
fn: m
|
|
2968
3202
|
},
|
|
2969
|
-
|
|
3203
|
+
e,
|
|
2970
3204
|
"toHaveVisibleError(${value})"
|
|
2971
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
3205
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
2972
3206
|
{
|
|
2973
3207
|
type: "eval",
|
|
2974
3208
|
el: this.wrapper.unwrap(),
|
|
2975
3209
|
fn: u
|
|
2976
3210
|
},
|
|
2977
|
-
|
|
3211
|
+
e,
|
|
2978
3212
|
"toHaveValue(${value})"
|
|
2979
3213
|
));
|
|
2980
3214
|
}
|
|
2981
3215
|
}
|
|
2982
|
-
const
|
|
3216
|
+
const ve = {
|
|
2983
3217
|
name: "text-field"
|
|
2984
3218
|
};
|
|
2985
|
-
class
|
|
3219
|
+
class ue extends n {
|
|
2986
3220
|
constructor() {
|
|
2987
|
-
super(...arguments), this.type = "textField", this.componentInfo =
|
|
3221
|
+
super(...arguments), this.type = "textField", this.componentInfo = ve, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.fill = this.ctx.driver.wrapAction(V.bind(this, () => this.control())), this.clear = this.ctx.driver.wrapAction(W.bind(this, () => this.control())), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.control())), this.control = Ue.bind(this, 'input[slot="_control"]');
|
|
2988
3222
|
}
|
|
2989
3223
|
}
|
|
2990
|
-
class
|
|
3224
|
+
class Rc extends a {
|
|
2991
3225
|
constructor() {
|
|
2992
|
-
super(...arguments), this.componentInfo =
|
|
3226
|
+
super(...arguments), this.componentInfo = ve, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
2993
3227
|
}
|
|
2994
3228
|
wrap(r) {
|
|
2995
|
-
return new
|
|
3229
|
+
return new ue(this.ctx, r);
|
|
2996
3230
|
}
|
|
2997
3231
|
}
|
|
2998
|
-
class
|
|
3232
|
+
class Gc {
|
|
2999
3233
|
constructor(r, s) {
|
|
3000
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3234
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
3001
3235
|
{
|
|
3002
3236
|
type: "eval",
|
|
3003
3237
|
el: this.wrapper.unwrap(),
|
|
3004
3238
|
fn: (c, o) => c[o],
|
|
3005
|
-
arg:
|
|
3239
|
+
arg: e
|
|
3006
3240
|
},
|
|
3007
3241
|
i,
|
|
3008
|
-
`toHaveProp("${
|
|
3009
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
3242
|
+
`toHaveProp("${e}", ${i})`
|
|
3243
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
3010
3244
|
{
|
|
3011
3245
|
type: "eval",
|
|
3012
3246
|
el: this.wrapper.unwrap(),
|
|
3013
3247
|
fn: m
|
|
3014
3248
|
},
|
|
3015
|
-
|
|
3249
|
+
e,
|
|
3016
3250
|
"toHaveVisibleError(${value})"
|
|
3017
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
3251
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
3018
3252
|
{
|
|
3019
3253
|
type: "eval",
|
|
3020
3254
|
el: this.wrapper.unwrap(),
|
|
3021
3255
|
fn: w
|
|
3022
3256
|
},
|
|
3023
|
-
|
|
3257
|
+
e,
|
|
3024
3258
|
"toHaveIcon(${value})"
|
|
3025
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
3259
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
3026
3260
|
{
|
|
3027
3261
|
type: "eval",
|
|
3028
3262
|
el: this.wrapper.unwrap(),
|
|
3029
3263
|
fn: u
|
|
3030
3264
|
},
|
|
3031
|
-
|
|
3265
|
+
e,
|
|
3032
3266
|
"toHaveValue(${value})"
|
|
3033
3267
|
));
|
|
3034
3268
|
}
|
|
3035
3269
|
}
|
|
3036
|
-
const
|
|
3270
|
+
const we = {
|
|
3037
3271
|
name: "time-picker"
|
|
3038
3272
|
};
|
|
3039
|
-
class
|
|
3273
|
+
class Lc extends n {
|
|
3040
3274
|
constructor() {
|
|
3041
|
-
super(...arguments), this.type = "timePicker", this.componentInfo =
|
|
3275
|
+
super(...arguments), this.type = "timePicker", this.componentInfo = we, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator)), this.clear = this.ctx.driver.wrapAction($.bind(this)), this.selectTime = this.ctx.driver.wrapAction(De.bind(this)), this.control = S.bind(this, "[data-vvd-component=text-field].control"), this.pickerButton = y.bind(this, "#picker-button"), this.clearButton = y.bind(this, "#clear-button");
|
|
3042
3276
|
}
|
|
3043
3277
|
}
|
|
3044
|
-
class
|
|
3278
|
+
class Oc extends a {
|
|
3045
3279
|
constructor() {
|
|
3046
|
-
super(...arguments), this.componentInfo =
|
|
3280
|
+
super(...arguments), this.componentInfo = we, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byLabel = this.ctx.driver.wrapSelector(x.bind(this));
|
|
3047
3281
|
}
|
|
3048
3282
|
wrap(r) {
|
|
3049
|
-
return new
|
|
3283
|
+
return new Lc(this.ctx, r);
|
|
3050
3284
|
}
|
|
3051
3285
|
}
|
|
3052
|
-
class
|
|
3286
|
+
class Fc {
|
|
3053
3287
|
constructor(r, s) {
|
|
3054
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3288
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
3055
3289
|
{
|
|
3056
3290
|
type: "eval",
|
|
3057
3291
|
el: this.wrapper.unwrap(),
|
|
3058
3292
|
fn: (c, o) => c[o],
|
|
3059
|
-
arg:
|
|
3293
|
+
arg: e
|
|
3060
3294
|
},
|
|
3061
3295
|
i,
|
|
3062
|
-
`toHaveProp("${
|
|
3063
|
-
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((
|
|
3296
|
+
`toHaveProp("${e}", ${i})`
|
|
3297
|
+
)), this.toHaveVisibleError = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
3064
3298
|
{
|
|
3065
3299
|
type: "eval",
|
|
3066
3300
|
el: this.wrapper.unwrap(),
|
|
3067
3301
|
fn: m
|
|
3068
3302
|
},
|
|
3069
|
-
|
|
3303
|
+
e,
|
|
3070
3304
|
"toHaveVisibleError(${value})"
|
|
3071
|
-
)), this.toHaveValue = this.ctx.driver.wrapExpect((
|
|
3305
|
+
)), this.toHaveValue = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
3072
3306
|
{
|
|
3073
3307
|
type: "eval",
|
|
3074
3308
|
el: this.wrapper.unwrap(),
|
|
3075
3309
|
fn: u
|
|
3076
3310
|
},
|
|
3077
|
-
|
|
3311
|
+
e,
|
|
3078
3312
|
"toHaveValue(${value})"
|
|
3079
3313
|
));
|
|
3080
3314
|
}
|
|
3081
3315
|
}
|
|
3082
|
-
const
|
|
3316
|
+
const be = {
|
|
3083
3317
|
name: "toggletip"
|
|
3084
3318
|
};
|
|
3085
|
-
class
|
|
3319
|
+
class Uc extends n {
|
|
3086
3320
|
constructor() {
|
|
3087
|
-
super(...arguments), this.type = "toggletip", this.componentInfo =
|
|
3321
|
+
super(...arguments), this.type = "toggletip", this.componentInfo = be, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
3088
3322
|
}
|
|
3089
3323
|
}
|
|
3090
|
-
class
|
|
3324
|
+
class Mc extends a {
|
|
3091
3325
|
constructor() {
|
|
3092
|
-
super(...arguments), this.componentInfo =
|
|
3326
|
+
super(...arguments), this.componentInfo = be, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byHeadline = this.ctx.driver.wrapSelector(k.bind(this));
|
|
3093
3327
|
}
|
|
3094
3328
|
wrap(r) {
|
|
3095
|
-
return new
|
|
3329
|
+
return new Uc(this.ctx, r);
|
|
3096
3330
|
}
|
|
3097
3331
|
}
|
|
3098
|
-
class
|
|
3332
|
+
class jc {
|
|
3099
3333
|
constructor(r, s) {
|
|
3100
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3334
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
3101
3335
|
{
|
|
3102
3336
|
type: "eval",
|
|
3103
3337
|
el: this.wrapper.unwrap(),
|
|
3104
3338
|
fn: (c, o) => c[o],
|
|
3105
|
-
arg:
|
|
3339
|
+
arg: e
|
|
3106
3340
|
},
|
|
3107
3341
|
i,
|
|
3108
|
-
`toHaveProp("${
|
|
3342
|
+
`toHaveProp("${e}", ${i})`
|
|
3109
3343
|
)), this.toBeOpen = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
3110
3344
|
{
|
|
3111
3345
|
type: "eval",
|
|
@@ -3125,33 +3359,33 @@ class ac {
|
|
|
3125
3359
|
));
|
|
3126
3360
|
}
|
|
3127
3361
|
}
|
|
3128
|
-
const
|
|
3362
|
+
const me = {
|
|
3129
3363
|
name: "tooltip"
|
|
3130
3364
|
};
|
|
3131
|
-
class
|
|
3365
|
+
class _c extends n {
|
|
3132
3366
|
constructor() {
|
|
3133
|
-
super(...arguments), this.type = "tooltip", this.componentInfo =
|
|
3367
|
+
super(...arguments), this.type = "tooltip", this.componentInfo = me, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
3134
3368
|
}
|
|
3135
3369
|
}
|
|
3136
|
-
class
|
|
3370
|
+
class zc extends a {
|
|
3137
3371
|
constructor() {
|
|
3138
|
-
super(...arguments), this.componentInfo =
|
|
3372
|
+
super(...arguments), this.componentInfo = me, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this)), this.byText = this.ctx.driver.wrapSelector(B.bind(this));
|
|
3139
3373
|
}
|
|
3140
3374
|
wrap(r) {
|
|
3141
|
-
return new
|
|
3375
|
+
return new _c(this.ctx, r);
|
|
3142
3376
|
}
|
|
3143
3377
|
}
|
|
3144
|
-
class
|
|
3378
|
+
class Jc {
|
|
3145
3379
|
constructor(r, s) {
|
|
3146
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3380
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
3147
3381
|
{
|
|
3148
3382
|
type: "eval",
|
|
3149
3383
|
el: this.wrapper.unwrap(),
|
|
3150
3384
|
fn: (c, o) => c[o],
|
|
3151
|
-
arg:
|
|
3385
|
+
arg: e
|
|
3152
3386
|
},
|
|
3153
3387
|
i,
|
|
3154
|
-
`toHaveProp("${
|
|
3388
|
+
`toHaveProp("${e}", ${i})`
|
|
3155
3389
|
)), this.toBeOpen = this.ctx.driver.wrapExpect(() => this.ctx.driver.expectEq(
|
|
3156
3390
|
{
|
|
3157
3391
|
type: "eval",
|
|
@@ -3171,178 +3405,187 @@ class dc {
|
|
|
3171
3405
|
));
|
|
3172
3406
|
}
|
|
3173
3407
|
}
|
|
3174
|
-
const
|
|
3408
|
+
const fe = {
|
|
3175
3409
|
name: "tree-item"
|
|
3176
3410
|
};
|
|
3177
|
-
class
|
|
3411
|
+
class Kc extends n {
|
|
3178
3412
|
constructor() {
|
|
3179
|
-
super(...arguments), this.type = "treeItem", this.componentInfo =
|
|
3413
|
+
super(...arguments), this.type = "treeItem", this.componentInfo = fe, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
3180
3414
|
}
|
|
3181
3415
|
}
|
|
3182
|
-
class
|
|
3416
|
+
class Qc extends a {
|
|
3183
3417
|
constructor() {
|
|
3184
|
-
super(...arguments), this.componentInfo =
|
|
3418
|
+
super(...arguments), this.componentInfo = fe, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
3185
3419
|
}
|
|
3186
3420
|
wrap(r) {
|
|
3187
|
-
return new
|
|
3421
|
+
return new Kc(this.ctx, r);
|
|
3188
3422
|
}
|
|
3189
3423
|
}
|
|
3190
|
-
class
|
|
3424
|
+
class Xc {
|
|
3191
3425
|
constructor(r, s) {
|
|
3192
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3426
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
3193
3427
|
{
|
|
3194
3428
|
type: "eval",
|
|
3195
3429
|
el: this.wrapper.unwrap(),
|
|
3196
3430
|
fn: (c, o) => c[o],
|
|
3197
|
-
arg:
|
|
3431
|
+
arg: e
|
|
3198
3432
|
},
|
|
3199
3433
|
i,
|
|
3200
|
-
`toHaveProp("${
|
|
3201
|
-
)), this.toHaveIcon = this.ctx.driver.wrapExpect((
|
|
3434
|
+
`toHaveProp("${e}", ${i})`
|
|
3435
|
+
)), this.toHaveIcon = this.ctx.driver.wrapExpect((e) => this.ctx.driver.expectEq(
|
|
3202
3436
|
{
|
|
3203
3437
|
type: "eval",
|
|
3204
3438
|
el: this.wrapper.unwrap(),
|
|
3205
3439
|
fn: w
|
|
3206
3440
|
},
|
|
3207
|
-
|
|
3441
|
+
e,
|
|
3208
3442
|
"toHaveIcon(${value})"
|
|
3209
3443
|
));
|
|
3210
3444
|
}
|
|
3211
3445
|
}
|
|
3212
|
-
const
|
|
3446
|
+
const Ee = {
|
|
3213
3447
|
name: "tree-view"
|
|
3214
3448
|
};
|
|
3215
|
-
class
|
|
3449
|
+
class Yc extends n {
|
|
3216
3450
|
constructor() {
|
|
3217
|
-
super(...arguments), this.type = "treeView", this.componentInfo =
|
|
3451
|
+
super(...arguments), this.type = "treeView", this.componentInfo = Ee, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
3218
3452
|
}
|
|
3219
3453
|
}
|
|
3220
|
-
class
|
|
3454
|
+
class Zc extends a {
|
|
3221
3455
|
constructor() {
|
|
3222
|
-
super(...arguments), this.componentInfo =
|
|
3456
|
+
super(...arguments), this.componentInfo = Ee, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
3223
3457
|
}
|
|
3224
3458
|
wrap(r) {
|
|
3225
|
-
return new
|
|
3459
|
+
return new Yc(this.ctx, r);
|
|
3226
3460
|
}
|
|
3227
3461
|
}
|
|
3228
|
-
class
|
|
3462
|
+
class Nc {
|
|
3229
3463
|
constructor(r, s) {
|
|
3230
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3464
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
3231
3465
|
{
|
|
3232
3466
|
type: "eval",
|
|
3233
3467
|
el: this.wrapper.unwrap(),
|
|
3234
3468
|
fn: (c, o) => c[o],
|
|
3235
|
-
arg:
|
|
3469
|
+
arg: e
|
|
3236
3470
|
},
|
|
3237
3471
|
i,
|
|
3238
|
-
`toHaveProp("${
|
|
3472
|
+
`toHaveProp("${e}", ${i})`
|
|
3239
3473
|
));
|
|
3240
3474
|
}
|
|
3241
3475
|
}
|
|
3242
|
-
const
|
|
3476
|
+
const ye = {
|
|
3243
3477
|
name: "video-player"
|
|
3244
3478
|
};
|
|
3245
|
-
class
|
|
3479
|
+
class to extends n {
|
|
3246
3480
|
constructor() {
|
|
3247
|
-
super(...arguments), this.type = "videoPlayer", this.componentInfo =
|
|
3481
|
+
super(...arguments), this.type = "videoPlayer", this.componentInfo = ye, this.hover = this.ctx.driver.wrapAction(l.bind(this, () => this.locator)), this.focus = this.ctx.driver.wrapAction(p.bind(this, () => this.locator)), this.blur = this.ctx.driver.wrapAction(d.bind(this, () => this.locator));
|
|
3248
3482
|
}
|
|
3249
3483
|
}
|
|
3250
|
-
class
|
|
3484
|
+
class eo extends a {
|
|
3251
3485
|
constructor() {
|
|
3252
|
-
super(...arguments), this.componentInfo =
|
|
3486
|
+
super(...arguments), this.componentInfo = ye, this.byTestId = this.ctx.driver.wrapSelector(h.bind(this));
|
|
3253
3487
|
}
|
|
3254
3488
|
wrap(r) {
|
|
3255
|
-
return new
|
|
3489
|
+
return new to(this.ctx, r);
|
|
3256
3490
|
}
|
|
3257
3491
|
}
|
|
3258
|
-
class
|
|
3492
|
+
class ro {
|
|
3259
3493
|
constructor(r, s) {
|
|
3260
|
-
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((
|
|
3494
|
+
this.ctx = r, this.wrapper = s, this.toHaveProp = this.ctx.driver.wrapExpect((e, i) => this.ctx.driver.expectEq(
|
|
3261
3495
|
{
|
|
3262
3496
|
type: "eval",
|
|
3263
3497
|
el: this.wrapper.unwrap(),
|
|
3264
3498
|
fn: (c, o) => c[o],
|
|
3265
|
-
arg:
|
|
3499
|
+
arg: e
|
|
3266
3500
|
},
|
|
3267
3501
|
i,
|
|
3268
|
-
`toHaveProp("${
|
|
3502
|
+
`toHaveProp("${e}", ${i})`
|
|
3269
3503
|
));
|
|
3270
3504
|
}
|
|
3271
3505
|
}
|
|
3272
3506
|
const j = {
|
|
3273
|
-
collection:
|
|
3274
|
-
accordion:
|
|
3275
|
-
accordionItem:
|
|
3276
|
-
actionGroup:
|
|
3277
|
-
alert:
|
|
3278
|
-
audioPlayer:
|
|
3279
|
-
avatar:
|
|
3280
|
-
badge:
|
|
3281
|
-
banner:
|
|
3282
|
-
breadcrumb:
|
|
3283
|
-
breadcrumbItem:
|
|
3284
|
-
button:
|
|
3285
|
-
calendar:
|
|
3286
|
-
calendarEvent:
|
|
3287
|
-
card:
|
|
3288
|
-
checkbox:
|
|
3289
|
-
colorPicker:
|
|
3290
|
-
combobox:
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3507
|
+
collection: ge,
|
|
3508
|
+
accordion: ze,
|
|
3509
|
+
accordionItem: Qe,
|
|
3510
|
+
actionGroup: Ze,
|
|
3511
|
+
alert: er,
|
|
3512
|
+
audioPlayer: sr,
|
|
3513
|
+
avatar: nr,
|
|
3514
|
+
badge: pr,
|
|
3515
|
+
banner: xr,
|
|
3516
|
+
breadcrumb: wr,
|
|
3517
|
+
breadcrumbItem: fr,
|
|
3518
|
+
button: yr,
|
|
3519
|
+
calendar: Ar,
|
|
3520
|
+
calendarEvent: $r,
|
|
3521
|
+
card: qr,
|
|
3522
|
+
checkbox: Br,
|
|
3523
|
+
colorPicker: Dr,
|
|
3524
|
+
combobox: Lr,
|
|
3525
|
+
contextualHelp: Ur,
|
|
3526
|
+
dataGrid: _r,
|
|
3527
|
+
dataGridCell: Kr,
|
|
3528
|
+
dataGridRow: Yr,
|
|
3529
|
+
datePicker: ti,
|
|
3530
|
+
dateRangePicker: ii,
|
|
3531
|
+
dateTimePicker: oi,
|
|
3532
|
+
dialPad: hi,
|
|
3533
|
+
dialog: li,
|
|
3534
|
+
divider: ui,
|
|
3535
|
+
emptyState: mi,
|
|
3536
|
+
fab: yi,
|
|
3537
|
+
filePicker: Ai,
|
|
3538
|
+
header: $i,
|
|
3539
|
+
icon: qi,
|
|
3540
|
+
layout: Bi,
|
|
3541
|
+
menu: Di,
|
|
3542
|
+
menuItem: Li,
|
|
3543
|
+
nav: Ui,
|
|
3544
|
+
navDisclosure: _i,
|
|
3545
|
+
navItem: Ki,
|
|
3546
|
+
note: Yi,
|
|
3547
|
+
numberField: ts,
|
|
3548
|
+
option: is,
|
|
3549
|
+
pagination: os,
|
|
3550
|
+
popover: hs,
|
|
3551
|
+
progress: ls,
|
|
3552
|
+
progressRing: us,
|
|
3553
|
+
radio: ms,
|
|
3554
|
+
radioGroup: ys,
|
|
3555
|
+
rangeSlider: As,
|
|
3556
|
+
richTextEditor: $s,
|
|
3557
|
+
richTextView: qs,
|
|
3558
|
+
searchableSelect: Bs,
|
|
3559
|
+
select: Ds,
|
|
3560
|
+
selectableBox: Ls,
|
|
3561
|
+
sideDrawer: Us,
|
|
3562
|
+
simpleColorPicker: _s,
|
|
3563
|
+
slider: Ks,
|
|
3564
|
+
splitButton: Ys,
|
|
3565
|
+
switch: tc,
|
|
3566
|
+
tab: ic,
|
|
3567
|
+
tabPanel: oc,
|
|
3568
|
+
table: hc,
|
|
3569
|
+
tableBody: lc,
|
|
3570
|
+
tableCell: uc,
|
|
3571
|
+
tableHead: mc,
|
|
3572
|
+
tableHeaderCell: yc,
|
|
3573
|
+
tableRow: Ac,
|
|
3574
|
+
tabs: $c,
|
|
3575
|
+
tag: qc,
|
|
3576
|
+
tagGroup: Bc,
|
|
3577
|
+
textArea: Dc,
|
|
3578
|
+
textField: Gc,
|
|
3579
|
+
timePicker: Fc,
|
|
3580
|
+
toggletip: jc,
|
|
3581
|
+
tooltip: Jc,
|
|
3582
|
+
treeItem: Xc,
|
|
3583
|
+
treeView: Nc,
|
|
3584
|
+
videoPlayer: ro
|
|
3585
|
+
};
|
|
3586
|
+
class io {
|
|
3344
3587
|
constructor(r) {
|
|
3345
|
-
this.ctx = r, this.accordion = new
|
|
3588
|
+
this.ctx = r, this.accordion = new _e(this.ctx), this.accordionItem = new Ke(this.ctx), this.actionGroup = new Ye(this.ctx), this.alert = new tr(this.ctx), this.audioPlayer = new ir(this.ctx), this.avatar = new or(this.ctx), this.badge = new hr(this.ctx), this.banner = new lr(this.ctx), this.breadcrumb = new ur(this.ctx), this.breadcrumbItem = new mr(this.ctx), this.button = new Er(this.ctx), this.calendar = new gr(this.ctx), this.calendarEvent = new Pr(this.ctx), this.card = new Cr(this.ctx), this.checkbox = new kr(this.ctx), this.colorPicker = new Wr(this.ctx), this.combobox = new Gr(this.ctx), this.contextualHelp = new Fr(this.ctx), this.dataGrid = new jr(this.ctx), this.dataGridCell = new Jr(this.ctx), this.dataGridRow = new Xr(this.ctx), this.datePicker = new Nr(this.ctx), this.dateRangePicker = new ri(this.ctx), this.dateTimePicker = new ci(this.ctx), this.dialPad = new ai(this.ctx), this.dialog = new di(this.ctx), this.divider = new vi(this.ctx), this.emptyState = new bi(this.ctx), this.fab = new Ei(this.ctx), this.filePicker = new gi(this.ctx), this.header = new Pi(this.ctx), this.icon = new Ci(this.ctx), this.layout = new ki(this.ctx), this.menu = new Wi(this.ctx), this.menuItem = new Gi(this.ctx), this.nav = new Fi(this.ctx), this.navDisclosure = new ji(this.ctx), this.navItem = new Ji(this.ctx), this.note = new Xi(this.ctx), this.numberField = new Ni(this.ctx), this.option = new rs(this.ctx), this.pagination = new cs(this.ctx), this.popover = new as(this.ctx), this.progress = new ds(this.ctx), this.progressRing = new vs(this.ctx), this.radio = new bs(this.ctx), this.radioGroup = new Es(this.ctx), this.rangeSlider = new gs(this.ctx), this.richTextEditor = new Ps(this.ctx), this.richTextView = new Cs(this.ctx), this.searchableSelect = new ks(this.ctx), this.select = new Ws(this.ctx), this.selectableBox = new Gs(this.ctx), this.sideDrawer = new Fs(this.ctx), this.simpleColorPicker = new js(this.ctx), this.slider = new Js(this.ctx), this.splitButton = new Xs(this.ctx), this.switch = new Ns(this.ctx), this.tab = new rc(this.ctx), this.tabPanel = new cc(this.ctx), this.table = new ac(this.ctx), this.tableBody = new dc(this.ctx), this.tableCell = new vc(this.ctx), this.tableHead = new bc(this.ctx), this.tableHeaderCell = new Ec(this.ctx), this.tableRow = new gc(this.ctx), this.tabs = new Pc(this.ctx), this.tag = new Cc(this.ctx), this.tagGroup = new kc(this.ctx), this.textArea = new Wc(this.ctx), this.textField = new Rc(this.ctx), this.timePicker = new Oc(this.ctx), this.toggletip = new Mc(this.ctx), this.tooltip = new zc(this.ctx), this.treeItem = new Qc(this.ctx), this.treeView = new Zc(this.ctx), this.videoPlayer = new eo(this.ctx);
|
|
3346
3589
|
}
|
|
3347
3590
|
expect(r) {
|
|
3348
3591
|
if (r.type in j)
|
|
@@ -3354,5 +3597,5 @@ class yc {
|
|
|
3354
3597
|
}
|
|
3355
3598
|
}
|
|
3356
3599
|
export {
|
|
3357
|
-
|
|
3600
|
+
io as V
|
|
3358
3601
|
};
|