intellitester 0.2.20 → 0.2.21
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/{chunk-ICJK4WBA.js → chunk-CKUSY4ZM.js} +119 -4
- package/dist/chunk-CKUSY4ZM.js.map +1 -0
- package/dist/{chunk-JIVORCLQ.cjs → chunk-PP666GZQ.cjs} +119 -4
- package/dist/chunk-PP666GZQ.cjs.map +1 -0
- package/dist/cli/index.cjs +35 -35
- package/dist/cli/index.js +1 -1
- package/dist/index.cjs +34 -34
- package/dist/index.d.cts +903 -7
- package/dist/index.d.ts +903 -7
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-ICJK4WBA.js.map +0 -1
- package/dist/chunk-JIVORCLQ.cjs.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ declare const LocatorSchema: z.ZodObject<{
|
|
|
11
11
|
role: z.ZodOptional<z.ZodString>;
|
|
12
12
|
name: z.ZodOptional<z.ZodString>;
|
|
13
13
|
}, z.core.$strip>;
|
|
14
|
-
declare const ActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
14
|
+
declare const ActionSchema: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15
15
|
type: z.ZodLiteral<"navigate">;
|
|
16
16
|
value: z.ZodString;
|
|
17
17
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -190,7 +190,455 @@ declare const ActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
190
190
|
type: z.ZodLiteral<"appwrite.verifyEmail">;
|
|
191
191
|
}, z.core.$strip>, z.ZodObject<{
|
|
192
192
|
type: z.ZodLiteral<"debug">;
|
|
193
|
-
}, z.core.$strip
|
|
193
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
194
|
+
type: z.ZodLiteral<"waitForSelector">;
|
|
195
|
+
target: z.ZodObject<{
|
|
196
|
+
description: z.ZodOptional<z.ZodString>;
|
|
197
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
198
|
+
text: z.ZodOptional<z.ZodString>;
|
|
199
|
+
css: z.ZodOptional<z.ZodString>;
|
|
200
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
201
|
+
role: z.ZodOptional<z.ZodString>;
|
|
202
|
+
name: z.ZodOptional<z.ZodString>;
|
|
203
|
+
}, z.core.$strip>;
|
|
204
|
+
state: z.ZodEnum<{
|
|
205
|
+
enabled: "enabled";
|
|
206
|
+
disabled: "disabled";
|
|
207
|
+
visible: "visible";
|
|
208
|
+
hidden: "hidden";
|
|
209
|
+
attached: "attached";
|
|
210
|
+
detached: "detached";
|
|
211
|
+
}>;
|
|
212
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
213
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
214
|
+
type: z.ZodLiteral<"fail">;
|
|
215
|
+
message: z.ZodString;
|
|
216
|
+
}, z.core.$strip>], "type">, z.ZodObject<{
|
|
217
|
+
type: z.ZodLiteral<"conditional">;
|
|
218
|
+
condition: z.ZodObject<{
|
|
219
|
+
type: z.ZodEnum<{
|
|
220
|
+
visible: "visible";
|
|
221
|
+
hidden: "hidden";
|
|
222
|
+
exists: "exists";
|
|
223
|
+
notExists: "notExists";
|
|
224
|
+
}>;
|
|
225
|
+
target: z.ZodObject<{
|
|
226
|
+
description: z.ZodOptional<z.ZodString>;
|
|
227
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
228
|
+
text: z.ZodOptional<z.ZodString>;
|
|
229
|
+
css: z.ZodOptional<z.ZodString>;
|
|
230
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
231
|
+
role: z.ZodOptional<z.ZodString>;
|
|
232
|
+
name: z.ZodOptional<z.ZodString>;
|
|
233
|
+
}, z.core.$strip>;
|
|
234
|
+
}, z.core.$strip>;
|
|
235
|
+
then: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
236
|
+
type: z.ZodLiteral<"navigate">;
|
|
237
|
+
value: z.ZodString;
|
|
238
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
239
|
+
type: z.ZodLiteral<"tap">;
|
|
240
|
+
target: z.ZodObject<{
|
|
241
|
+
description: z.ZodOptional<z.ZodString>;
|
|
242
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
243
|
+
text: z.ZodOptional<z.ZodString>;
|
|
244
|
+
css: z.ZodOptional<z.ZodString>;
|
|
245
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
246
|
+
role: z.ZodOptional<z.ZodString>;
|
|
247
|
+
name: z.ZodOptional<z.ZodString>;
|
|
248
|
+
}, z.core.$strip>;
|
|
249
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
250
|
+
type: z.ZodLiteral<"input">;
|
|
251
|
+
target: z.ZodObject<{
|
|
252
|
+
description: z.ZodOptional<z.ZodString>;
|
|
253
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
254
|
+
text: z.ZodOptional<z.ZodString>;
|
|
255
|
+
css: z.ZodOptional<z.ZodString>;
|
|
256
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
257
|
+
role: z.ZodOptional<z.ZodString>;
|
|
258
|
+
name: z.ZodOptional<z.ZodString>;
|
|
259
|
+
}, z.core.$strip>;
|
|
260
|
+
value: z.ZodString;
|
|
261
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
262
|
+
type: z.ZodLiteral<"clear">;
|
|
263
|
+
target: z.ZodObject<{
|
|
264
|
+
description: z.ZodOptional<z.ZodString>;
|
|
265
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
266
|
+
text: z.ZodOptional<z.ZodString>;
|
|
267
|
+
css: z.ZodOptional<z.ZodString>;
|
|
268
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
269
|
+
role: z.ZodOptional<z.ZodString>;
|
|
270
|
+
name: z.ZodOptional<z.ZodString>;
|
|
271
|
+
}, z.core.$strip>;
|
|
272
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
273
|
+
type: z.ZodLiteral<"hover">;
|
|
274
|
+
target: z.ZodObject<{
|
|
275
|
+
description: z.ZodOptional<z.ZodString>;
|
|
276
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
277
|
+
text: z.ZodOptional<z.ZodString>;
|
|
278
|
+
css: z.ZodOptional<z.ZodString>;
|
|
279
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
280
|
+
role: z.ZodOptional<z.ZodString>;
|
|
281
|
+
name: z.ZodOptional<z.ZodString>;
|
|
282
|
+
}, z.core.$strip>;
|
|
283
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
284
|
+
type: z.ZodLiteral<"select">;
|
|
285
|
+
target: z.ZodObject<{
|
|
286
|
+
description: z.ZodOptional<z.ZodString>;
|
|
287
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
288
|
+
text: z.ZodOptional<z.ZodString>;
|
|
289
|
+
css: z.ZodOptional<z.ZodString>;
|
|
290
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
291
|
+
role: z.ZodOptional<z.ZodString>;
|
|
292
|
+
name: z.ZodOptional<z.ZodString>;
|
|
293
|
+
}, z.core.$strip>;
|
|
294
|
+
value: z.ZodString;
|
|
295
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
296
|
+
type: z.ZodLiteral<"check">;
|
|
297
|
+
target: z.ZodObject<{
|
|
298
|
+
description: z.ZodOptional<z.ZodString>;
|
|
299
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
300
|
+
text: z.ZodOptional<z.ZodString>;
|
|
301
|
+
css: z.ZodOptional<z.ZodString>;
|
|
302
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
303
|
+
role: z.ZodOptional<z.ZodString>;
|
|
304
|
+
name: z.ZodOptional<z.ZodString>;
|
|
305
|
+
}, z.core.$strip>;
|
|
306
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
307
|
+
type: z.ZodLiteral<"uncheck">;
|
|
308
|
+
target: z.ZodObject<{
|
|
309
|
+
description: z.ZodOptional<z.ZodString>;
|
|
310
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
311
|
+
text: z.ZodOptional<z.ZodString>;
|
|
312
|
+
css: z.ZodOptional<z.ZodString>;
|
|
313
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
314
|
+
role: z.ZodOptional<z.ZodString>;
|
|
315
|
+
name: z.ZodOptional<z.ZodString>;
|
|
316
|
+
}, z.core.$strip>;
|
|
317
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
318
|
+
type: z.ZodLiteral<"press">;
|
|
319
|
+
key: z.ZodString;
|
|
320
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
321
|
+
description: z.ZodOptional<z.ZodString>;
|
|
322
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
323
|
+
text: z.ZodOptional<z.ZodString>;
|
|
324
|
+
css: z.ZodOptional<z.ZodString>;
|
|
325
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
326
|
+
role: z.ZodOptional<z.ZodString>;
|
|
327
|
+
name: z.ZodOptional<z.ZodString>;
|
|
328
|
+
}, z.core.$strip>>;
|
|
329
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
330
|
+
type: z.ZodLiteral<"focus">;
|
|
331
|
+
target: z.ZodObject<{
|
|
332
|
+
description: z.ZodOptional<z.ZodString>;
|
|
333
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
334
|
+
text: z.ZodOptional<z.ZodString>;
|
|
335
|
+
css: z.ZodOptional<z.ZodString>;
|
|
336
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
337
|
+
role: z.ZodOptional<z.ZodString>;
|
|
338
|
+
name: z.ZodOptional<z.ZodString>;
|
|
339
|
+
}, z.core.$strip>;
|
|
340
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
341
|
+
type: z.ZodLiteral<"assert">;
|
|
342
|
+
target: z.ZodObject<{
|
|
343
|
+
description: z.ZodOptional<z.ZodString>;
|
|
344
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
345
|
+
text: z.ZodOptional<z.ZodString>;
|
|
346
|
+
css: z.ZodOptional<z.ZodString>;
|
|
347
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
348
|
+
role: z.ZodOptional<z.ZodString>;
|
|
349
|
+
name: z.ZodOptional<z.ZodString>;
|
|
350
|
+
}, z.core.$strip>;
|
|
351
|
+
value: z.ZodOptional<z.ZodString>;
|
|
352
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
353
|
+
type: z.ZodLiteral<"wait">;
|
|
354
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
355
|
+
description: z.ZodOptional<z.ZodString>;
|
|
356
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
357
|
+
text: z.ZodOptional<z.ZodString>;
|
|
358
|
+
css: z.ZodOptional<z.ZodString>;
|
|
359
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
360
|
+
role: z.ZodOptional<z.ZodString>;
|
|
361
|
+
name: z.ZodOptional<z.ZodString>;
|
|
362
|
+
}, z.core.$strip>>;
|
|
363
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
364
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
365
|
+
type: z.ZodLiteral<"scroll">;
|
|
366
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
367
|
+
description: z.ZodOptional<z.ZodString>;
|
|
368
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
369
|
+
text: z.ZodOptional<z.ZodString>;
|
|
370
|
+
css: z.ZodOptional<z.ZodString>;
|
|
371
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
372
|
+
role: z.ZodOptional<z.ZodString>;
|
|
373
|
+
name: z.ZodOptional<z.ZodString>;
|
|
374
|
+
}, z.core.$strip>>;
|
|
375
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
376
|
+
up: "up";
|
|
377
|
+
down: "down";
|
|
378
|
+
}>>;
|
|
379
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
380
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
381
|
+
type: z.ZodLiteral<"screenshot">;
|
|
382
|
+
name: z.ZodOptional<z.ZodString>;
|
|
383
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
384
|
+
type: z.ZodLiteral<"setVar">;
|
|
385
|
+
name: z.ZodString;
|
|
386
|
+
value: z.ZodOptional<z.ZodString>;
|
|
387
|
+
from: z.ZodOptional<z.ZodEnum<{
|
|
388
|
+
response: "response";
|
|
389
|
+
element: "element";
|
|
390
|
+
email: "email";
|
|
391
|
+
}>>;
|
|
392
|
+
path: z.ZodOptional<z.ZodString>;
|
|
393
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
394
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
395
|
+
type: z.ZodLiteral<"email.waitFor">;
|
|
396
|
+
mailbox: z.ZodString;
|
|
397
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
398
|
+
subjectContains: z.ZodOptional<z.ZodString>;
|
|
399
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
400
|
+
type: z.ZodLiteral<"email.extractCode">;
|
|
401
|
+
saveTo: z.ZodString;
|
|
402
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
403
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
404
|
+
type: z.ZodLiteral<"email.extractLink">;
|
|
405
|
+
saveTo: z.ZodString;
|
|
406
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
407
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
408
|
+
type: z.ZodLiteral<"email.clear">;
|
|
409
|
+
mailbox: z.ZodString;
|
|
410
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
411
|
+
type: z.ZodLiteral<"appwrite.verifyEmail">;
|
|
412
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
413
|
+
type: z.ZodLiteral<"debug">;
|
|
414
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
415
|
+
type: z.ZodLiteral<"waitForSelector">;
|
|
416
|
+
target: z.ZodObject<{
|
|
417
|
+
description: z.ZodOptional<z.ZodString>;
|
|
418
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
419
|
+
text: z.ZodOptional<z.ZodString>;
|
|
420
|
+
css: z.ZodOptional<z.ZodString>;
|
|
421
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
422
|
+
role: z.ZodOptional<z.ZodString>;
|
|
423
|
+
name: z.ZodOptional<z.ZodString>;
|
|
424
|
+
}, z.core.$strip>;
|
|
425
|
+
state: z.ZodEnum<{
|
|
426
|
+
enabled: "enabled";
|
|
427
|
+
disabled: "disabled";
|
|
428
|
+
visible: "visible";
|
|
429
|
+
hidden: "hidden";
|
|
430
|
+
attached: "attached";
|
|
431
|
+
detached: "detached";
|
|
432
|
+
}>;
|
|
433
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
434
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
435
|
+
type: z.ZodLiteral<"fail">;
|
|
436
|
+
message: z.ZodString;
|
|
437
|
+
}, z.core.$strip>], "type">>;
|
|
438
|
+
else: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
439
|
+
type: z.ZodLiteral<"navigate">;
|
|
440
|
+
value: z.ZodString;
|
|
441
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
442
|
+
type: z.ZodLiteral<"tap">;
|
|
443
|
+
target: z.ZodObject<{
|
|
444
|
+
description: z.ZodOptional<z.ZodString>;
|
|
445
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
446
|
+
text: z.ZodOptional<z.ZodString>;
|
|
447
|
+
css: z.ZodOptional<z.ZodString>;
|
|
448
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
449
|
+
role: z.ZodOptional<z.ZodString>;
|
|
450
|
+
name: z.ZodOptional<z.ZodString>;
|
|
451
|
+
}, z.core.$strip>;
|
|
452
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
453
|
+
type: z.ZodLiteral<"input">;
|
|
454
|
+
target: z.ZodObject<{
|
|
455
|
+
description: z.ZodOptional<z.ZodString>;
|
|
456
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
457
|
+
text: z.ZodOptional<z.ZodString>;
|
|
458
|
+
css: z.ZodOptional<z.ZodString>;
|
|
459
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
460
|
+
role: z.ZodOptional<z.ZodString>;
|
|
461
|
+
name: z.ZodOptional<z.ZodString>;
|
|
462
|
+
}, z.core.$strip>;
|
|
463
|
+
value: z.ZodString;
|
|
464
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
465
|
+
type: z.ZodLiteral<"clear">;
|
|
466
|
+
target: z.ZodObject<{
|
|
467
|
+
description: z.ZodOptional<z.ZodString>;
|
|
468
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
469
|
+
text: z.ZodOptional<z.ZodString>;
|
|
470
|
+
css: z.ZodOptional<z.ZodString>;
|
|
471
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
472
|
+
role: z.ZodOptional<z.ZodString>;
|
|
473
|
+
name: z.ZodOptional<z.ZodString>;
|
|
474
|
+
}, z.core.$strip>;
|
|
475
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
476
|
+
type: z.ZodLiteral<"hover">;
|
|
477
|
+
target: z.ZodObject<{
|
|
478
|
+
description: z.ZodOptional<z.ZodString>;
|
|
479
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
480
|
+
text: z.ZodOptional<z.ZodString>;
|
|
481
|
+
css: z.ZodOptional<z.ZodString>;
|
|
482
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
483
|
+
role: z.ZodOptional<z.ZodString>;
|
|
484
|
+
name: z.ZodOptional<z.ZodString>;
|
|
485
|
+
}, z.core.$strip>;
|
|
486
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
487
|
+
type: z.ZodLiteral<"select">;
|
|
488
|
+
target: z.ZodObject<{
|
|
489
|
+
description: z.ZodOptional<z.ZodString>;
|
|
490
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
491
|
+
text: z.ZodOptional<z.ZodString>;
|
|
492
|
+
css: z.ZodOptional<z.ZodString>;
|
|
493
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
494
|
+
role: z.ZodOptional<z.ZodString>;
|
|
495
|
+
name: z.ZodOptional<z.ZodString>;
|
|
496
|
+
}, z.core.$strip>;
|
|
497
|
+
value: z.ZodString;
|
|
498
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
499
|
+
type: z.ZodLiteral<"check">;
|
|
500
|
+
target: z.ZodObject<{
|
|
501
|
+
description: z.ZodOptional<z.ZodString>;
|
|
502
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
503
|
+
text: z.ZodOptional<z.ZodString>;
|
|
504
|
+
css: z.ZodOptional<z.ZodString>;
|
|
505
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
506
|
+
role: z.ZodOptional<z.ZodString>;
|
|
507
|
+
name: z.ZodOptional<z.ZodString>;
|
|
508
|
+
}, z.core.$strip>;
|
|
509
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
510
|
+
type: z.ZodLiteral<"uncheck">;
|
|
511
|
+
target: z.ZodObject<{
|
|
512
|
+
description: z.ZodOptional<z.ZodString>;
|
|
513
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
514
|
+
text: z.ZodOptional<z.ZodString>;
|
|
515
|
+
css: z.ZodOptional<z.ZodString>;
|
|
516
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
517
|
+
role: z.ZodOptional<z.ZodString>;
|
|
518
|
+
name: z.ZodOptional<z.ZodString>;
|
|
519
|
+
}, z.core.$strip>;
|
|
520
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
521
|
+
type: z.ZodLiteral<"press">;
|
|
522
|
+
key: z.ZodString;
|
|
523
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
524
|
+
description: z.ZodOptional<z.ZodString>;
|
|
525
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
526
|
+
text: z.ZodOptional<z.ZodString>;
|
|
527
|
+
css: z.ZodOptional<z.ZodString>;
|
|
528
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
529
|
+
role: z.ZodOptional<z.ZodString>;
|
|
530
|
+
name: z.ZodOptional<z.ZodString>;
|
|
531
|
+
}, z.core.$strip>>;
|
|
532
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
533
|
+
type: z.ZodLiteral<"focus">;
|
|
534
|
+
target: z.ZodObject<{
|
|
535
|
+
description: z.ZodOptional<z.ZodString>;
|
|
536
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
537
|
+
text: z.ZodOptional<z.ZodString>;
|
|
538
|
+
css: z.ZodOptional<z.ZodString>;
|
|
539
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
540
|
+
role: z.ZodOptional<z.ZodString>;
|
|
541
|
+
name: z.ZodOptional<z.ZodString>;
|
|
542
|
+
}, z.core.$strip>;
|
|
543
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
544
|
+
type: z.ZodLiteral<"assert">;
|
|
545
|
+
target: z.ZodObject<{
|
|
546
|
+
description: z.ZodOptional<z.ZodString>;
|
|
547
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
548
|
+
text: z.ZodOptional<z.ZodString>;
|
|
549
|
+
css: z.ZodOptional<z.ZodString>;
|
|
550
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
551
|
+
role: z.ZodOptional<z.ZodString>;
|
|
552
|
+
name: z.ZodOptional<z.ZodString>;
|
|
553
|
+
}, z.core.$strip>;
|
|
554
|
+
value: z.ZodOptional<z.ZodString>;
|
|
555
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
556
|
+
type: z.ZodLiteral<"wait">;
|
|
557
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
558
|
+
description: z.ZodOptional<z.ZodString>;
|
|
559
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
560
|
+
text: z.ZodOptional<z.ZodString>;
|
|
561
|
+
css: z.ZodOptional<z.ZodString>;
|
|
562
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
563
|
+
role: z.ZodOptional<z.ZodString>;
|
|
564
|
+
name: z.ZodOptional<z.ZodString>;
|
|
565
|
+
}, z.core.$strip>>;
|
|
566
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
567
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
568
|
+
type: z.ZodLiteral<"scroll">;
|
|
569
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
570
|
+
description: z.ZodOptional<z.ZodString>;
|
|
571
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
572
|
+
text: z.ZodOptional<z.ZodString>;
|
|
573
|
+
css: z.ZodOptional<z.ZodString>;
|
|
574
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
575
|
+
role: z.ZodOptional<z.ZodString>;
|
|
576
|
+
name: z.ZodOptional<z.ZodString>;
|
|
577
|
+
}, z.core.$strip>>;
|
|
578
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
579
|
+
up: "up";
|
|
580
|
+
down: "down";
|
|
581
|
+
}>>;
|
|
582
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
583
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
584
|
+
type: z.ZodLiteral<"screenshot">;
|
|
585
|
+
name: z.ZodOptional<z.ZodString>;
|
|
586
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
587
|
+
type: z.ZodLiteral<"setVar">;
|
|
588
|
+
name: z.ZodString;
|
|
589
|
+
value: z.ZodOptional<z.ZodString>;
|
|
590
|
+
from: z.ZodOptional<z.ZodEnum<{
|
|
591
|
+
response: "response";
|
|
592
|
+
element: "element";
|
|
593
|
+
email: "email";
|
|
594
|
+
}>>;
|
|
595
|
+
path: z.ZodOptional<z.ZodString>;
|
|
596
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
597
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
598
|
+
type: z.ZodLiteral<"email.waitFor">;
|
|
599
|
+
mailbox: z.ZodString;
|
|
600
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
601
|
+
subjectContains: z.ZodOptional<z.ZodString>;
|
|
602
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
603
|
+
type: z.ZodLiteral<"email.extractCode">;
|
|
604
|
+
saveTo: z.ZodString;
|
|
605
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
606
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
607
|
+
type: z.ZodLiteral<"email.extractLink">;
|
|
608
|
+
saveTo: z.ZodString;
|
|
609
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
610
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
611
|
+
type: z.ZodLiteral<"email.clear">;
|
|
612
|
+
mailbox: z.ZodString;
|
|
613
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
614
|
+
type: z.ZodLiteral<"appwrite.verifyEmail">;
|
|
615
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
616
|
+
type: z.ZodLiteral<"debug">;
|
|
617
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
618
|
+
type: z.ZodLiteral<"waitForSelector">;
|
|
619
|
+
target: z.ZodObject<{
|
|
620
|
+
description: z.ZodOptional<z.ZodString>;
|
|
621
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
622
|
+
text: z.ZodOptional<z.ZodString>;
|
|
623
|
+
css: z.ZodOptional<z.ZodString>;
|
|
624
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
625
|
+
role: z.ZodOptional<z.ZodString>;
|
|
626
|
+
name: z.ZodOptional<z.ZodString>;
|
|
627
|
+
}, z.core.$strip>;
|
|
628
|
+
state: z.ZodEnum<{
|
|
629
|
+
enabled: "enabled";
|
|
630
|
+
disabled: "disabled";
|
|
631
|
+
visible: "visible";
|
|
632
|
+
hidden: "hidden";
|
|
633
|
+
attached: "attached";
|
|
634
|
+
detached: "detached";
|
|
635
|
+
}>;
|
|
636
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
637
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
638
|
+
type: z.ZodLiteral<"fail">;
|
|
639
|
+
message: z.ZodString;
|
|
640
|
+
}, z.core.$strip>], "type">>>;
|
|
641
|
+
}, z.core.$strip>]>;
|
|
194
642
|
declare const cleanupDiscoverSchema: z.ZodOptional<z.ZodObject<{
|
|
195
643
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
196
644
|
paths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -297,7 +745,7 @@ declare const TestDefinitionSchema: z.ZodObject<{
|
|
|
297
745
|
cleanupOnFailure: z.ZodOptional<z.ZodBoolean>;
|
|
298
746
|
}, z.core.$strip>>;
|
|
299
747
|
}, z.core.$strip>>;
|
|
300
|
-
steps: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
748
|
+
steps: z.ZodArray<z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
301
749
|
type: z.ZodLiteral<"navigate">;
|
|
302
750
|
value: z.ZodString;
|
|
303
751
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -476,7 +924,455 @@ declare const TestDefinitionSchema: z.ZodObject<{
|
|
|
476
924
|
type: z.ZodLiteral<"appwrite.verifyEmail">;
|
|
477
925
|
}, z.core.$strip>, z.ZodObject<{
|
|
478
926
|
type: z.ZodLiteral<"debug">;
|
|
479
|
-
}, z.core.$strip
|
|
927
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
928
|
+
type: z.ZodLiteral<"waitForSelector">;
|
|
929
|
+
target: z.ZodObject<{
|
|
930
|
+
description: z.ZodOptional<z.ZodString>;
|
|
931
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
932
|
+
text: z.ZodOptional<z.ZodString>;
|
|
933
|
+
css: z.ZodOptional<z.ZodString>;
|
|
934
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
935
|
+
role: z.ZodOptional<z.ZodString>;
|
|
936
|
+
name: z.ZodOptional<z.ZodString>;
|
|
937
|
+
}, z.core.$strip>;
|
|
938
|
+
state: z.ZodEnum<{
|
|
939
|
+
enabled: "enabled";
|
|
940
|
+
disabled: "disabled";
|
|
941
|
+
visible: "visible";
|
|
942
|
+
hidden: "hidden";
|
|
943
|
+
attached: "attached";
|
|
944
|
+
detached: "detached";
|
|
945
|
+
}>;
|
|
946
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
947
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
948
|
+
type: z.ZodLiteral<"fail">;
|
|
949
|
+
message: z.ZodString;
|
|
950
|
+
}, z.core.$strip>], "type">, z.ZodObject<{
|
|
951
|
+
type: z.ZodLiteral<"conditional">;
|
|
952
|
+
condition: z.ZodObject<{
|
|
953
|
+
type: z.ZodEnum<{
|
|
954
|
+
visible: "visible";
|
|
955
|
+
hidden: "hidden";
|
|
956
|
+
exists: "exists";
|
|
957
|
+
notExists: "notExists";
|
|
958
|
+
}>;
|
|
959
|
+
target: z.ZodObject<{
|
|
960
|
+
description: z.ZodOptional<z.ZodString>;
|
|
961
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
962
|
+
text: z.ZodOptional<z.ZodString>;
|
|
963
|
+
css: z.ZodOptional<z.ZodString>;
|
|
964
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
965
|
+
role: z.ZodOptional<z.ZodString>;
|
|
966
|
+
name: z.ZodOptional<z.ZodString>;
|
|
967
|
+
}, z.core.$strip>;
|
|
968
|
+
}, z.core.$strip>;
|
|
969
|
+
then: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
970
|
+
type: z.ZodLiteral<"navigate">;
|
|
971
|
+
value: z.ZodString;
|
|
972
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
973
|
+
type: z.ZodLiteral<"tap">;
|
|
974
|
+
target: z.ZodObject<{
|
|
975
|
+
description: z.ZodOptional<z.ZodString>;
|
|
976
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
977
|
+
text: z.ZodOptional<z.ZodString>;
|
|
978
|
+
css: z.ZodOptional<z.ZodString>;
|
|
979
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
980
|
+
role: z.ZodOptional<z.ZodString>;
|
|
981
|
+
name: z.ZodOptional<z.ZodString>;
|
|
982
|
+
}, z.core.$strip>;
|
|
983
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
984
|
+
type: z.ZodLiteral<"input">;
|
|
985
|
+
target: z.ZodObject<{
|
|
986
|
+
description: z.ZodOptional<z.ZodString>;
|
|
987
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
988
|
+
text: z.ZodOptional<z.ZodString>;
|
|
989
|
+
css: z.ZodOptional<z.ZodString>;
|
|
990
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
991
|
+
role: z.ZodOptional<z.ZodString>;
|
|
992
|
+
name: z.ZodOptional<z.ZodString>;
|
|
993
|
+
}, z.core.$strip>;
|
|
994
|
+
value: z.ZodString;
|
|
995
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
996
|
+
type: z.ZodLiteral<"clear">;
|
|
997
|
+
target: z.ZodObject<{
|
|
998
|
+
description: z.ZodOptional<z.ZodString>;
|
|
999
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1000
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1002
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1004
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1005
|
+
}, z.core.$strip>;
|
|
1006
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1007
|
+
type: z.ZodLiteral<"hover">;
|
|
1008
|
+
target: z.ZodObject<{
|
|
1009
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1012
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1013
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1016
|
+
}, z.core.$strip>;
|
|
1017
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1018
|
+
type: z.ZodLiteral<"select">;
|
|
1019
|
+
target: z.ZodObject<{
|
|
1020
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1021
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1022
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1023
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1024
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1025
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1026
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1027
|
+
}, z.core.$strip>;
|
|
1028
|
+
value: z.ZodString;
|
|
1029
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1030
|
+
type: z.ZodLiteral<"check">;
|
|
1031
|
+
target: z.ZodObject<{
|
|
1032
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1033
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1034
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1035
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1036
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1037
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1038
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1039
|
+
}, z.core.$strip>;
|
|
1040
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1041
|
+
type: z.ZodLiteral<"uncheck">;
|
|
1042
|
+
target: z.ZodObject<{
|
|
1043
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1044
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1045
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1046
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1047
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1048
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1049
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1050
|
+
}, z.core.$strip>;
|
|
1051
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1052
|
+
type: z.ZodLiteral<"press">;
|
|
1053
|
+
key: z.ZodString;
|
|
1054
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
1055
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1056
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1057
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1058
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1059
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1060
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1061
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1062
|
+
}, z.core.$strip>>;
|
|
1063
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1064
|
+
type: z.ZodLiteral<"focus">;
|
|
1065
|
+
target: z.ZodObject<{
|
|
1066
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1067
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1068
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1069
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1070
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1071
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1072
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1073
|
+
}, z.core.$strip>;
|
|
1074
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1075
|
+
type: z.ZodLiteral<"assert">;
|
|
1076
|
+
target: z.ZodObject<{
|
|
1077
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1078
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1079
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1080
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1081
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1082
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1083
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1084
|
+
}, z.core.$strip>;
|
|
1085
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1086
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1087
|
+
type: z.ZodLiteral<"wait">;
|
|
1088
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
1089
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1090
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1091
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1092
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1093
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1094
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1095
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1096
|
+
}, z.core.$strip>>;
|
|
1097
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1098
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1099
|
+
type: z.ZodLiteral<"scroll">;
|
|
1100
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
1101
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1102
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1103
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1104
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1105
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1106
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1107
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1108
|
+
}, z.core.$strip>>;
|
|
1109
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
1110
|
+
up: "up";
|
|
1111
|
+
down: "down";
|
|
1112
|
+
}>>;
|
|
1113
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
1114
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1115
|
+
type: z.ZodLiteral<"screenshot">;
|
|
1116
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1117
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1118
|
+
type: z.ZodLiteral<"setVar">;
|
|
1119
|
+
name: z.ZodString;
|
|
1120
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1121
|
+
from: z.ZodOptional<z.ZodEnum<{
|
|
1122
|
+
response: "response";
|
|
1123
|
+
element: "element";
|
|
1124
|
+
email: "email";
|
|
1125
|
+
}>>;
|
|
1126
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1127
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1128
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1129
|
+
type: z.ZodLiteral<"email.waitFor">;
|
|
1130
|
+
mailbox: z.ZodString;
|
|
1131
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1132
|
+
subjectContains: z.ZodOptional<z.ZodString>;
|
|
1133
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1134
|
+
type: z.ZodLiteral<"email.extractCode">;
|
|
1135
|
+
saveTo: z.ZodString;
|
|
1136
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1137
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1138
|
+
type: z.ZodLiteral<"email.extractLink">;
|
|
1139
|
+
saveTo: z.ZodString;
|
|
1140
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1141
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1142
|
+
type: z.ZodLiteral<"email.clear">;
|
|
1143
|
+
mailbox: z.ZodString;
|
|
1144
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1145
|
+
type: z.ZodLiteral<"appwrite.verifyEmail">;
|
|
1146
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1147
|
+
type: z.ZodLiteral<"debug">;
|
|
1148
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1149
|
+
type: z.ZodLiteral<"waitForSelector">;
|
|
1150
|
+
target: z.ZodObject<{
|
|
1151
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1153
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1154
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1156
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1157
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1158
|
+
}, z.core.$strip>;
|
|
1159
|
+
state: z.ZodEnum<{
|
|
1160
|
+
enabled: "enabled";
|
|
1161
|
+
disabled: "disabled";
|
|
1162
|
+
visible: "visible";
|
|
1163
|
+
hidden: "hidden";
|
|
1164
|
+
attached: "attached";
|
|
1165
|
+
detached: "detached";
|
|
1166
|
+
}>;
|
|
1167
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1168
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1169
|
+
type: z.ZodLiteral<"fail">;
|
|
1170
|
+
message: z.ZodString;
|
|
1171
|
+
}, z.core.$strip>], "type">>;
|
|
1172
|
+
else: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1173
|
+
type: z.ZodLiteral<"navigate">;
|
|
1174
|
+
value: z.ZodString;
|
|
1175
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1176
|
+
type: z.ZodLiteral<"tap">;
|
|
1177
|
+
target: z.ZodObject<{
|
|
1178
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1179
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1183
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1184
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1185
|
+
}, z.core.$strip>;
|
|
1186
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1187
|
+
type: z.ZodLiteral<"input">;
|
|
1188
|
+
target: z.ZodObject<{
|
|
1189
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1190
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1192
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1193
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1194
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1195
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
}, z.core.$strip>;
|
|
1197
|
+
value: z.ZodString;
|
|
1198
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1199
|
+
type: z.ZodLiteral<"clear">;
|
|
1200
|
+
target: z.ZodObject<{
|
|
1201
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1202
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1203
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1204
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1205
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1206
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1207
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1208
|
+
}, z.core.$strip>;
|
|
1209
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1210
|
+
type: z.ZodLiteral<"hover">;
|
|
1211
|
+
target: z.ZodObject<{
|
|
1212
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1215
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1216
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1217
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1218
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1219
|
+
}, z.core.$strip>;
|
|
1220
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1221
|
+
type: z.ZodLiteral<"select">;
|
|
1222
|
+
target: z.ZodObject<{
|
|
1223
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1224
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1225
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1226
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1227
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1230
|
+
}, z.core.$strip>;
|
|
1231
|
+
value: z.ZodString;
|
|
1232
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1233
|
+
type: z.ZodLiteral<"check">;
|
|
1234
|
+
target: z.ZodObject<{
|
|
1235
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1236
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1237
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1238
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1239
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1240
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1241
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1242
|
+
}, z.core.$strip>;
|
|
1243
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1244
|
+
type: z.ZodLiteral<"uncheck">;
|
|
1245
|
+
target: z.ZodObject<{
|
|
1246
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1247
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1248
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1249
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1250
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1251
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1252
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1253
|
+
}, z.core.$strip>;
|
|
1254
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1255
|
+
type: z.ZodLiteral<"press">;
|
|
1256
|
+
key: z.ZodString;
|
|
1257
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
1258
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1259
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1260
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1261
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1262
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1263
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1264
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1265
|
+
}, z.core.$strip>>;
|
|
1266
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1267
|
+
type: z.ZodLiteral<"focus">;
|
|
1268
|
+
target: z.ZodObject<{
|
|
1269
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1270
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1271
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1272
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1273
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1274
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1275
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1276
|
+
}, z.core.$strip>;
|
|
1277
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1278
|
+
type: z.ZodLiteral<"assert">;
|
|
1279
|
+
target: z.ZodObject<{
|
|
1280
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1281
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1282
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1283
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1284
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1285
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1286
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1287
|
+
}, z.core.$strip>;
|
|
1288
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1289
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1290
|
+
type: z.ZodLiteral<"wait">;
|
|
1291
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
1292
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1293
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1295
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1296
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1297
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1298
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1299
|
+
}, z.core.$strip>>;
|
|
1300
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1301
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1302
|
+
type: z.ZodLiteral<"scroll">;
|
|
1303
|
+
target: z.ZodOptional<z.ZodObject<{
|
|
1304
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1305
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1306
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1307
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1308
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1309
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1310
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1311
|
+
}, z.core.$strip>>;
|
|
1312
|
+
direction: z.ZodOptional<z.ZodEnum<{
|
|
1313
|
+
up: "up";
|
|
1314
|
+
down: "down";
|
|
1315
|
+
}>>;
|
|
1316
|
+
amount: z.ZodOptional<z.ZodNumber>;
|
|
1317
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1318
|
+
type: z.ZodLiteral<"screenshot">;
|
|
1319
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1320
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1321
|
+
type: z.ZodLiteral<"setVar">;
|
|
1322
|
+
name: z.ZodString;
|
|
1323
|
+
value: z.ZodOptional<z.ZodString>;
|
|
1324
|
+
from: z.ZodOptional<z.ZodEnum<{
|
|
1325
|
+
response: "response";
|
|
1326
|
+
element: "element";
|
|
1327
|
+
email: "email";
|
|
1328
|
+
}>>;
|
|
1329
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1330
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1331
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1332
|
+
type: z.ZodLiteral<"email.waitFor">;
|
|
1333
|
+
mailbox: z.ZodString;
|
|
1334
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1335
|
+
subjectContains: z.ZodOptional<z.ZodString>;
|
|
1336
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1337
|
+
type: z.ZodLiteral<"email.extractCode">;
|
|
1338
|
+
saveTo: z.ZodString;
|
|
1339
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1340
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1341
|
+
type: z.ZodLiteral<"email.extractLink">;
|
|
1342
|
+
saveTo: z.ZodString;
|
|
1343
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
1344
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1345
|
+
type: z.ZodLiteral<"email.clear">;
|
|
1346
|
+
mailbox: z.ZodString;
|
|
1347
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1348
|
+
type: z.ZodLiteral<"appwrite.verifyEmail">;
|
|
1349
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1350
|
+
type: z.ZodLiteral<"debug">;
|
|
1351
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1352
|
+
type: z.ZodLiteral<"waitForSelector">;
|
|
1353
|
+
target: z.ZodObject<{
|
|
1354
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1355
|
+
testId: z.ZodOptional<z.ZodString>;
|
|
1356
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1357
|
+
css: z.ZodOptional<z.ZodString>;
|
|
1358
|
+
xpath: z.ZodOptional<z.ZodString>;
|
|
1359
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1360
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1361
|
+
}, z.core.$strip>;
|
|
1362
|
+
state: z.ZodEnum<{
|
|
1363
|
+
enabled: "enabled";
|
|
1364
|
+
disabled: "disabled";
|
|
1365
|
+
visible: "visible";
|
|
1366
|
+
hidden: "hidden";
|
|
1367
|
+
attached: "attached";
|
|
1368
|
+
detached: "detached";
|
|
1369
|
+
}>;
|
|
1370
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
1371
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1372
|
+
type: z.ZodLiteral<"fail">;
|
|
1373
|
+
message: z.ZodString;
|
|
1374
|
+
}, z.core.$strip>], "type">>>;
|
|
1375
|
+
}, z.core.$strip>]>>;
|
|
480
1376
|
}, z.core.$strip>;
|
|
481
1377
|
declare const IntellitesterConfigSchema: z.ZodObject<{
|
|
482
1378
|
defaults: z.ZodOptional<z.ZodObject<{
|
|
@@ -629,8 +1525,8 @@ declare const workflowReferenceSchema: z.ZodObject<{
|
|
|
629
1525
|
id: z.ZodOptional<z.ZodString>;
|
|
630
1526
|
depends_on: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
631
1527
|
on_failure: z.ZodOptional<z.ZodEnum<{
|
|
632
|
-
skip: "skip";
|
|
633
1528
|
fail: "fail";
|
|
1529
|
+
skip: "skip";
|
|
634
1530
|
ignore: "ignore";
|
|
635
1531
|
}>>;
|
|
636
1532
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -755,8 +1651,8 @@ declare const PipelineDefinitionSchema: z.ZodObject<{
|
|
|
755
1651
|
}, z.core.$strip>>;
|
|
756
1652
|
}, z.core.$strip>>;
|
|
757
1653
|
on_failure: z.ZodDefault<z.ZodEnum<{
|
|
758
|
-
skip: "skip";
|
|
759
1654
|
fail: "fail";
|
|
1655
|
+
skip: "skip";
|
|
760
1656
|
ignore: "ignore";
|
|
761
1657
|
}>>;
|
|
762
1658
|
cleanup_on_failure: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -765,8 +1661,8 @@ declare const PipelineDefinitionSchema: z.ZodObject<{
|
|
|
765
1661
|
id: z.ZodOptional<z.ZodString>;
|
|
766
1662
|
depends_on: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
767
1663
|
on_failure: z.ZodOptional<z.ZodEnum<{
|
|
768
|
-
skip: "skip";
|
|
769
1664
|
fail: "fail";
|
|
1665
|
+
skip: "skip";
|
|
770
1666
|
ignore: "ignore";
|
|
771
1667
|
}>>;
|
|
772
1668
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|