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