@wdio/cli 8.14.2 → 8.14.3

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.
@@ -15,226 +15,36 @@ export declare const IOS_CONFIG: {
15
15
  automationName: string;
16
16
  deviceName: string;
17
17
  };
18
- export declare const COMPILER_OPTION_ANSWERS: readonly ["Babel (https://babeljs.io/)", "TypeScript (https://www.typescriptlang.org/)", "No!"];
19
- export declare const COMPILER_OPTIONS: {
20
- readonly babel: "Babel (https://babeljs.io/)";
21
- readonly ts: "TypeScript (https://www.typescriptlang.org/)";
22
- readonly nil: "No!";
23
- };
18
+ export declare enum CompilerOptions {
19
+ Babel = "Babel (https://babeljs.io/)",
20
+ TS = "TypeScript (https://www.typescriptlang.org/)",
21
+ Nil = "No!"
22
+ }
24
23
  /**
25
24
  * We have to use a string hash for value because InquirerJS default values do not work if we have
26
25
  * objects as a `value` to be stored from the user's answers.
27
26
  */
28
27
  export declare const SUPPORTED_PACKAGES: {
29
- readonly runner: readonly [{
30
- readonly name: "E2E Testing - of Web or Mobile Applications";
31
- readonly value: "@wdio/local-runner$--$local$--$e2e";
32
- }, {
33
- readonly name: "Component or Unit Testing - in the browser\n > https://webdriver.io/docs/component-testing";
34
- readonly value: "@wdio/browser-runner$--$browser$--$component";
35
- }, {
36
- readonly name: "Desktop Testing - of Electron Applications\n > https://webdriver.io/docs/desktop-testing/electron";
37
- readonly value: "@wdio/local-runner$--$local$--$electron";
38
- }, {
39
- readonly name: "Desktop Testing - of MacOS Applications\n > https://webdriver.io/docs/desktop-testing/macos";
40
- readonly value: "@wdio/local-runner$--$local$--$macos";
41
- }, {
42
- readonly name: "VS Code Extension Testing\n > https://webdriver.io/docs/vscode-extension-testing";
43
- readonly value: "@wdio/local-runner$--$local$--$vscode";
44
- }];
45
- readonly framework: readonly [{
46
- readonly name: "Mocha (https://mochajs.org/)";
47
- readonly value: "@wdio/mocha-framework$--$mocha";
48
- }, {
49
- readonly name: "Jasmine (https://jasmine.github.io/)";
50
- readonly value: "@wdio/jasmine-framework$--$jasmine";
51
- }, {
52
- readonly name: "Cucumber (https://cucumber.io/)";
53
- readonly value: "@wdio/cucumber-framework$--$cucumber";
54
- }];
55
- readonly reporter: readonly [{
56
- readonly name: "spec";
57
- readonly value: "@wdio/spec-reporter$--$spec";
58
- }, {
59
- readonly name: "dot";
60
- readonly value: "@wdio/dot-reporter$--$dot";
61
- }, {
62
- readonly name: "junit";
63
- readonly value: "@wdio/junit-reporter$--$junit";
64
- }, {
65
- readonly name: "allure";
66
- readonly value: "@wdio/allure-reporter$--$allure";
67
- }, {
68
- readonly name: "sumologic";
69
- readonly value: "@wdio/sumologic-reporter$--$sumologic";
70
- }, {
71
- readonly name: "concise";
72
- readonly value: "@wdio/concise-reporter$--$concise";
73
- }, {
74
- readonly name: "reportportal";
75
- readonly value: "wdio-reportportal-reporter$--$reportportal";
76
- }, {
77
- readonly name: "video";
78
- readonly value: "wdio-video-reporter$--$video";
79
- }, {
80
- readonly name: "json";
81
- readonly value: "wdio-json-reporter$--$json";
82
- }, {
83
- readonly name: "cucumber-json";
84
- readonly value: "wdio-cucumberjs-json-reporter$--$cucumberjs-json";
85
- }, {
86
- readonly name: "mochawesome";
87
- readonly value: "wdio-mochawesome-reporter$--$mochawesome";
88
- }, {
89
- readonly name: "timeline";
90
- readonly value: "wdio-timeline-reporter$--$timeline";
91
- }, {
92
- readonly name: "html-nice";
93
- readonly value: "wdio-html-nice-reporter$--$html-nice";
94
- }, {
95
- readonly name: "slack";
96
- readonly value: "@moroo/wdio-slack-reporter$--$slack";
97
- }, {
98
- readonly name: "teamcity";
99
- readonly value: "wdio-teamcity-reporter$--$teamcity";
100
- }, {
101
- readonly name: "delta";
102
- readonly value: "@delta-reporter/wdio-delta-reporter-service";
103
- }, {
104
- readonly name: "testrail";
105
- readonly value: "@wdio/testrail-reporter$--$testrail";
106
- }, {
107
- readonly name: "light";
108
- readonly value: "wdio-light-reporter--$light";
109
- }];
110
- readonly plugin: readonly [{
111
- readonly name: "wait-for";
112
- readonly value: "wdio-wait-for$--$wait-for";
113
- }, {
114
- readonly name: "angular-component-harnesses";
115
- readonly value: "@badisi/wdio-harness$--$harness";
116
- }];
117
- readonly service: readonly [{
118
- readonly name: "vite";
119
- readonly value: "wdio-vite-service$--$vite";
120
- }, {
121
- readonly name: "nuxt";
122
- readonly value: "wdio-nuxt-service$--$nuxt";
123
- }, {
124
- readonly name: "firefox-profile";
125
- readonly value: "@wdio/firefox-profile-service$--$firefox-profile";
126
- }, {
127
- readonly name: "gmail";
128
- readonly value: "@wdio/gmail-service$--$gmail";
129
- }, {
130
- readonly name: "sauce";
131
- readonly value: "@wdio/sauce-service$--$sauce";
132
- }, {
133
- readonly name: "testingbot";
134
- readonly value: "@wdio/testingbot-service$--$testingbot";
135
- }, {
136
- readonly name: "crossbrowsertesting";
137
- readonly value: "@wdio/crossbrowsertesting-service$--$crossbrowsertesting";
138
- }, {
139
- readonly name: "browserstack";
140
- readonly value: "@wdio/browserstack-service$--$browserstack";
141
- }, {
142
- readonly name: "devtools";
143
- readonly value: "@wdio/devtools-service$--$devtools";
144
- }, {
145
- readonly name: "vscode";
146
- readonly value: "wdio-vscode-service$--$vscode";
147
- }, {
148
- readonly name: "electron";
149
- readonly value: "wdio-electron-service$--$electron";
150
- }, {
151
- readonly name: "appium";
152
- readonly value: "@wdio/appium-service$--$appium";
153
- }, {
154
- readonly name: "eslinter-service";
155
- readonly value: "wdio-eslinter-service$--$eslinter";
156
- }, {
157
- readonly name: "lambdatest";
158
- readonly value: "wdio-lambdatest-service$--$lambdatest";
159
- }, {
160
- readonly name: "zafira-listener";
161
- readonly value: "wdio-zafira-listener-service$--$zafira-listener";
162
- }, {
163
- readonly name: "reportportal";
164
- readonly value: "wdio-reportportal-service$--$reportportal";
165
- }, {
166
- readonly name: "docker";
167
- readonly value: "wdio-docker-service$--$docker";
168
- }, {
169
- readonly name: "ui5";
170
- readonly value: "wdio-ui5-service$--$ui5";
171
- }, {
172
- readonly name: "wiremock";
173
- readonly value: "wdio-wiremock-service$--$wiremock";
174
- }, {
175
- readonly name: "ng-apimock";
176
- readonly value: "wdio-ng-apimock-service$--ng-apimock";
177
- }, {
178
- readonly name: "slack";
179
- readonly value: "wdio-slack-service$--$slack";
180
- }, {
181
- readonly name: "cucumber-viewport-logger";
182
- readonly value: "wdio-cucumber-viewport-logger-service$--$cucumber-viewport-logger";
183
- }, {
184
- readonly name: "intercept";
185
- readonly value: "wdio-intercept-service$--$intercept";
186
- }, {
187
- readonly name: "docker";
188
- readonly value: "wdio-docker-service$--$docker";
189
- }, {
190
- readonly name: "image-comparison";
191
- readonly value: "wdio-image-comparison-service$--$image-comparison";
192
- }, {
193
- readonly name: "novus-visual-regression";
194
- readonly value: "wdio-novus-visual-regression-service$--$novus-visual-regression";
195
- }, {
196
- readonly name: "rerun";
197
- readonly value: "wdio-rerun-service$--$rerun";
198
- }, {
199
- readonly name: "winappdriver";
200
- readonly value: "wdio-winappdriver-service$--$winappdriver";
201
- }, {
202
- readonly name: "ywinappdriver";
203
- readonly value: "wdio-ywinappdriver-service$--$ywinappdriver";
204
- }, {
205
- readonly name: "performancetotal";
206
- readonly value: "wdio-performancetotal-service$--$performancetotal";
207
- }, {
208
- readonly name: "cleanuptotal";
209
- readonly value: "wdio-cleanuptotal-service$--$cleanuptotal";
210
- }, {
211
- readonly name: "aws-device-farm";
212
- readonly value: "wdio-aws-device-farm-service$--$aws-device-farm";
213
- }, {
214
- readonly name: "ocr-native-apps";
215
- readonly value: "wdio-ocr-service$--$ocr-native-apps";
216
- }, {
217
- readonly name: "ms-teams";
218
- readonly value: "wdio-ms-teams-service$--$ms-teams";
219
- }, {
220
- readonly name: "tesults";
221
- readonly value: "wdio-tesults-service$--$tesults";
222
- }, {
223
- readonly name: "azure-devops";
224
- readonly value: "@gmangiapelo/wdio-azure-devops-service$--$azure-devops";
225
- }, {
226
- readonly name: "google-Chat";
227
- readonly value: "wdio-google-chat-service$--$google-chat";
228
- }, {
229
- readonly name: "qmate-service";
230
- readonly value: "@sap_oss/wdio-qmate-service$--$qmate-service";
231
- }, {
232
- readonly name: "vitaqai";
233
- readonly value: "wdio-vitaqai-service$--$vitaqai";
234
- }, {
235
- readonly name: "robonut";
236
- readonly value: "wdio-robonut-service$--$robonut";
237
- }];
28
+ runner: {
29
+ name: string;
30
+ value: string;
31
+ }[];
32
+ framework: {
33
+ name: string;
34
+ value: string;
35
+ }[];
36
+ reporter: {
37
+ name: string;
38
+ value: string;
39
+ }[];
40
+ plugin: {
41
+ name: string;
42
+ value: string;
43
+ }[];
44
+ service: {
45
+ name: string;
46
+ value: string;
47
+ }[];
238
48
  };
239
49
  export declare const SUPPORTED_BROWSER_RUNNER_PRESETS: ({
240
50
  name: string;
@@ -244,9 +54,23 @@ export declare const SUPPORTED_BROWSER_RUNNER_PRESETS: ({
244
54
  value: boolean;
245
55
  })[];
246
56
  export declare const TESTING_LIBRARY_PACKAGES: Record<string, string>;
247
- export declare const BACKEND_CHOICES: readonly ["On my local machine", "In the cloud using Experitest", "In the cloud using Sauce Labs", "In the cloud using BrowserStack", "In the cloud using Testingbot or LambdaTest or a different service", "I have my own Selenium cloud"];
248
- export declare const PROTOCOL_OPTIONS: readonly ["https", "http"];
249
- export declare const REGION_OPTION: readonly ["us", "eu", "apac"];
57
+ export declare enum BackendChoice {
58
+ Local = "On my local machine",
59
+ Experitest = "In the cloud using Experitest",
60
+ Saucelabs = "In the cloud using Sauce Labs",
61
+ Browserstack = "In the cloud using BrowserStack",
62
+ OtherVendors = "In the cloud using Testingbot or LambdaTest or a different service",
63
+ Grid = "I have my own Selenium cloud"
64
+ }
65
+ declare enum ProtocolOptions {
66
+ HTTPS = "https",
67
+ HTTP = "http"
68
+ }
69
+ export declare enum RegionOptions {
70
+ US = "us",
71
+ EU = "eu",
72
+ APAC = "apac"
73
+ }
250
74
  export declare const E2E_ENVIRONMENTS: {
251
75
  name: string;
252
76
  value: string;
@@ -260,26 +84,15 @@ export declare const BROWSER_ENVIRONMENTS: {
260
84
  value: string;
261
85
  }[];
262
86
  declare function isBrowserRunner(answers: Questionnair): boolean;
87
+ export declare const isNuxtProject: boolean;
263
88
  export declare const QUESTIONNAIRE: ({
264
89
  type: string;
265
90
  name: string;
266
91
  message: string;
267
- choices: readonly [{
268
- readonly name: "E2E Testing - of Web or Mobile Applications";
269
- readonly value: "@wdio/local-runner$--$local$--$e2e";
270
- }, {
271
- readonly name: "Component or Unit Testing - in the browser\n > https://webdriver.io/docs/component-testing";
272
- readonly value: "@wdio/browser-runner$--$browser$--$component";
273
- }, {
274
- readonly name: "Desktop Testing - of Electron Applications\n > https://webdriver.io/docs/desktop-testing/electron";
275
- readonly value: "@wdio/local-runner$--$local$--$electron";
276
- }, {
277
- readonly name: "Desktop Testing - of MacOS Applications\n > https://webdriver.io/docs/desktop-testing/macos";
278
- readonly value: "@wdio/local-runner$--$local$--$macos";
279
- }, {
280
- readonly name: "VS Code Extension Testing\n > https://webdriver.io/docs/vscode-extension-testing";
281
- readonly value: "@wdio/local-runner$--$local$--$vscode";
282
- }];
92
+ choices: {
93
+ name: string;
94
+ value: string;
95
+ }[];
283
96
  when?: undefined;
284
97
  default?: undefined;
285
98
  } | {
@@ -306,7 +119,7 @@ export declare const QUESTIONNAIRE: ({
306
119
  type: string;
307
120
  name: string;
308
121
  message: string;
309
- choices: readonly ["On my local machine", "In the cloud using Experitest", "In the cloud using Sauce Labs", "In the cloud using BrowserStack", "In the cloud using Testingbot or LambdaTest or a different service", "I have my own Selenium cloud"];
122
+ choices: BackendChoice[];
310
123
  when: (answers: Questionnair) => boolean;
311
124
  default?: undefined;
312
125
  } | {
@@ -347,55 +160,40 @@ export declare const QUESTIONNAIRE: ({
347
160
  type: string;
348
161
  name: string;
349
162
  message: string;
350
- default: string;
351
- choices: readonly ["https", "http"];
163
+ default: ProtocolOptions;
164
+ choices: ProtocolOptions[];
352
165
  when: (answers: Questionnair) => boolean;
353
166
  } | {
354
167
  type: string;
355
168
  name: string;
356
169
  message: string;
357
- choices: readonly ["us", "eu", "apac"];
170
+ choices: RegionOptions[];
358
171
  when: (answers: Questionnair) => boolean;
359
172
  default?: undefined;
360
173
  } | {
361
174
  type: string;
362
175
  name: string;
363
176
  message: string;
364
- choices: (answers: Questionnair) => readonly [{
365
- readonly name: "Mocha (https://mochajs.org/)";
366
- readonly value: "@wdio/mocha-framework$--$mocha";
367
- }, {
368
- readonly name: "Jasmine (https://jasmine.github.io/)";
369
- readonly value: "@wdio/jasmine-framework$--$jasmine";
370
- }, {
371
- readonly name: "Cucumber (https://cucumber.io/)";
372
- readonly value: "@wdio/cucumber-framework$--$cucumber";
373
- }] | ({
374
- readonly name: "Mocha (https://mochajs.org/)";
375
- readonly value: "@wdio/mocha-framework$--$mocha";
376
- } | {
377
- readonly name: "Jasmine (https://jasmine.github.io/)";
378
- readonly value: "@wdio/jasmine-framework$--$jasmine";
379
- } | {
380
- readonly name: "Cucumber (https://cucumber.io/)";
381
- readonly value: "@wdio/cucumber-framework$--$cucumber";
382
- })[];
383
- when?: undefined;
384
- default?: undefined;
177
+ default: boolean;
178
+ when: (answers: Questionnair) => boolean;
179
+ choices?: undefined;
385
180
  } | {
386
181
  type: string;
387
182
  name: string;
388
183
  message: string;
389
- choices: readonly ["Babel (https://babeljs.io/)", "TypeScript (https://www.typescriptlang.org/)", "No!"];
390
- default: (answers: Questionnair) => Promise<"Babel (https://babeljs.io/)" | "TypeScript (https://www.typescriptlang.org/)" | "No!">;
184
+ choices: (answers: Questionnair) => {
185
+ name: string;
186
+ value: string;
187
+ }[];
391
188
  when?: undefined;
189
+ default?: undefined;
392
190
  } | {
393
191
  type: string;
394
192
  name: string;
395
193
  message: string;
396
- default: boolean;
397
- when: (answers: Questionnair) => boolean;
398
- choices?: undefined;
194
+ choices: CompilerOptions[];
195
+ default: (answers: Questionnair) => Promise<CompilerOptions>;
196
+ when?: undefined;
399
197
  } | {
400
198
  type: string;
401
199
  name: string;
@@ -414,325 +212,21 @@ export declare const QUESTIONNAIRE: ({
414
212
  type: string;
415
213
  name: string;
416
214
  message: string;
417
- choices: readonly [{
418
- readonly name: "spec";
419
- readonly value: "@wdio/spec-reporter$--$spec";
420
- }, {
421
- readonly name: "dot";
422
- readonly value: "@wdio/dot-reporter$--$dot";
423
- }, {
424
- readonly name: "junit";
425
- readonly value: "@wdio/junit-reporter$--$junit";
426
- }, {
427
- readonly name: "allure";
428
- readonly value: "@wdio/allure-reporter$--$allure";
429
- }, {
430
- readonly name: "sumologic";
431
- readonly value: "@wdio/sumologic-reporter$--$sumologic";
432
- }, {
433
- readonly name: "concise";
434
- readonly value: "@wdio/concise-reporter$--$concise";
435
- }, {
436
- readonly name: "reportportal";
437
- readonly value: "wdio-reportportal-reporter$--$reportportal";
438
- }, {
439
- readonly name: "video";
440
- readonly value: "wdio-video-reporter$--$video";
441
- }, {
442
- readonly name: "json";
443
- readonly value: "wdio-json-reporter$--$json";
444
- }, {
445
- readonly name: "cucumber-json";
446
- readonly value: "wdio-cucumberjs-json-reporter$--$cucumberjs-json";
447
- }, {
448
- readonly name: "mochawesome";
449
- readonly value: "wdio-mochawesome-reporter$--$mochawesome";
450
- }, {
451
- readonly name: "timeline";
452
- readonly value: "wdio-timeline-reporter$--$timeline";
453
- }, {
454
- readonly name: "html-nice";
455
- readonly value: "wdio-html-nice-reporter$--$html-nice";
456
- }, {
457
- readonly name: "slack";
458
- readonly value: "@moroo/wdio-slack-reporter$--$slack";
459
- }, {
460
- readonly name: "teamcity";
461
- readonly value: "wdio-teamcity-reporter$--$teamcity";
462
- }, {
463
- readonly name: "delta";
464
- readonly value: "@delta-reporter/wdio-delta-reporter-service";
465
- }, {
466
- readonly name: "testrail";
467
- readonly value: "@wdio/testrail-reporter$--$testrail";
468
- }, {
469
- readonly name: "light";
470
- readonly value: "wdio-light-reporter--$light";
471
- }];
472
- default: ("@wdio/spec-reporter$--$spec" | "@wdio/dot-reporter$--$dot" | "@wdio/junit-reporter$--$junit" | "@wdio/allure-reporter$--$allure" | "@wdio/sumologic-reporter$--$sumologic" | "@wdio/concise-reporter$--$concise" | "wdio-reportportal-reporter$--$reportportal" | "wdio-video-reporter$--$video" | "wdio-json-reporter$--$json" | "wdio-cucumberjs-json-reporter$--$cucumberjs-json" | "wdio-mochawesome-reporter$--$mochawesome" | "wdio-timeline-reporter$--$timeline" | "wdio-html-nice-reporter$--$html-nice" | "@moroo/wdio-slack-reporter$--$slack" | "wdio-teamcity-reporter$--$teamcity" | "@delta-reporter/wdio-delta-reporter-service" | "@wdio/testrail-reporter$--$testrail" | "wdio-light-reporter--$light")[];
473
- when?: undefined;
474
- } | {
475
- type: string;
476
- name: string;
477
- message: string;
478
- choices: readonly [{
479
- readonly name: "wait-for";
480
- readonly value: "wdio-wait-for$--$wait-for";
481
- }, {
482
- readonly name: "angular-component-harnesses";
483
- readonly value: "@badisi/wdio-harness$--$harness";
484
- }];
485
- default: never[];
215
+ choices: {
216
+ name: string;
217
+ value: string;
218
+ }[];
219
+ default: string[];
486
220
  when?: undefined;
487
221
  } | {
488
222
  type: string;
489
223
  name: string;
490
224
  message: string;
491
- choices: (answers: Questionnair) => Promise<readonly [{
492
- readonly name: "vite";
493
- readonly value: "wdio-vite-service$--$vite";
494
- }, {
495
- readonly name: "nuxt";
496
- readonly value: "wdio-nuxt-service$--$nuxt";
497
- }, {
498
- readonly name: "firefox-profile";
499
- readonly value: "@wdio/firefox-profile-service$--$firefox-profile";
500
- }, {
501
- readonly name: "gmail";
502
- readonly value: "@wdio/gmail-service$--$gmail";
503
- }, {
504
- readonly name: "sauce";
505
- readonly value: "@wdio/sauce-service$--$sauce";
506
- }, {
507
- readonly name: "testingbot";
508
- readonly value: "@wdio/testingbot-service$--$testingbot";
509
- }, {
510
- readonly name: "crossbrowsertesting";
511
- readonly value: "@wdio/crossbrowsertesting-service$--$crossbrowsertesting";
512
- }, {
513
- readonly name: "browserstack";
514
- readonly value: "@wdio/browserstack-service$--$browserstack";
515
- }, {
516
- readonly name: "devtools";
517
- readonly value: "@wdio/devtools-service$--$devtools";
518
- }, {
519
- readonly name: "vscode";
520
- readonly value: "wdio-vscode-service$--$vscode";
521
- }, {
522
- readonly name: "electron";
523
- readonly value: "wdio-electron-service$--$electron";
524
- }, {
525
- readonly name: "appium";
526
- readonly value: "@wdio/appium-service$--$appium";
527
- }, {
528
- readonly name: "eslinter-service";
529
- readonly value: "wdio-eslinter-service$--$eslinter";
530
- }, {
531
- readonly name: "lambdatest";
532
- readonly value: "wdio-lambdatest-service$--$lambdatest";
533
- }, {
534
- readonly name: "zafira-listener";
535
- readonly value: "wdio-zafira-listener-service$--$zafira-listener";
536
- }, {
537
- readonly name: "reportportal";
538
- readonly value: "wdio-reportportal-service$--$reportportal";
539
- }, {
540
- readonly name: "docker";
541
- readonly value: "wdio-docker-service$--$docker";
542
- }, {
543
- readonly name: "ui5";
544
- readonly value: "wdio-ui5-service$--$ui5";
545
- }, {
546
- readonly name: "wiremock";
547
- readonly value: "wdio-wiremock-service$--$wiremock";
548
- }, {
549
- readonly name: "ng-apimock";
550
- readonly value: "wdio-ng-apimock-service$--ng-apimock";
551
- }, {
552
- readonly name: "slack";
553
- readonly value: "wdio-slack-service$--$slack";
554
- }, {
555
- readonly name: "cucumber-viewport-logger";
556
- readonly value: "wdio-cucumber-viewport-logger-service$--$cucumber-viewport-logger";
557
- }, {
558
- readonly name: "intercept";
559
- readonly value: "wdio-intercept-service$--$intercept";
560
- }, {
561
- readonly name: "docker";
562
- readonly value: "wdio-docker-service$--$docker";
563
- }, {
564
- readonly name: "image-comparison";
565
- readonly value: "wdio-image-comparison-service$--$image-comparison";
566
- }, {
567
- readonly name: "novus-visual-regression";
568
- readonly value: "wdio-novus-visual-regression-service$--$novus-visual-regression";
569
- }, {
570
- readonly name: "rerun";
571
- readonly value: "wdio-rerun-service$--$rerun";
572
- }, {
573
- readonly name: "winappdriver";
574
- readonly value: "wdio-winappdriver-service$--$winappdriver";
575
- }, {
576
- readonly name: "ywinappdriver";
577
- readonly value: "wdio-ywinappdriver-service$--$ywinappdriver";
578
- }, {
579
- readonly name: "performancetotal";
580
- readonly value: "wdio-performancetotal-service$--$performancetotal";
581
- }, {
582
- readonly name: "cleanuptotal";
583
- readonly value: "wdio-cleanuptotal-service$--$cleanuptotal";
584
- }, {
585
- readonly name: "aws-device-farm";
586
- readonly value: "wdio-aws-device-farm-service$--$aws-device-farm";
587
- }, {
588
- readonly name: "ocr-native-apps";
589
- readonly value: "wdio-ocr-service$--$ocr-native-apps";
590
- }, {
591
- readonly name: "ms-teams";
592
- readonly value: "wdio-ms-teams-service$--$ms-teams";
593
- }, {
594
- readonly name: "tesults";
595
- readonly value: "wdio-tesults-service$--$tesults";
596
- }, {
597
- readonly name: "azure-devops";
598
- readonly value: "@gmangiapelo/wdio-azure-devops-service$--$azure-devops";
599
- }, {
600
- readonly name: "google-Chat";
601
- readonly value: "wdio-google-chat-service$--$google-chat";
602
- }, {
603
- readonly name: "qmate-service";
604
- readonly value: "@sap_oss/wdio-qmate-service$--$qmate-service";
605
- }, {
606
- readonly name: "vitaqai";
607
- readonly value: "wdio-vitaqai-service$--$vitaqai";
608
- }, {
609
- readonly name: "robonut";
610
- readonly value: "wdio-robonut-service$--$robonut";
611
- }] | {
225
+ choices: (answers: Questionnair) => ({
612
226
  name: string;
613
227
  value: string;
614
- }[] | ({
615
- readonly name: "vite";
616
- readonly value: "wdio-vite-service$--$vite";
617
- } | {
618
- readonly name: "nuxt";
619
- readonly value: "wdio-nuxt-service$--$nuxt";
620
- } | {
621
- readonly name: "firefox-profile";
622
- readonly value: "@wdio/firefox-profile-service$--$firefox-profile";
623
- } | {
624
- readonly name: "gmail";
625
- readonly value: "@wdio/gmail-service$--$gmail";
626
- } | {
627
- readonly name: "sauce";
628
- readonly value: "@wdio/sauce-service$--$sauce";
629
- } | {
630
- readonly name: "testingbot";
631
- readonly value: "@wdio/testingbot-service$--$testingbot";
632
- } | {
633
- readonly name: "crossbrowsertesting";
634
- readonly value: "@wdio/crossbrowsertesting-service$--$crossbrowsertesting";
635
- } | {
636
- readonly name: "browserstack";
637
- readonly value: "@wdio/browserstack-service$--$browserstack";
638
- } | {
639
- readonly name: "devtools";
640
- readonly value: "@wdio/devtools-service$--$devtools";
641
- } | {
642
- readonly name: "vscode";
643
- readonly value: "wdio-vscode-service$--$vscode";
644
- } | {
645
- readonly name: "electron";
646
- readonly value: "wdio-electron-service$--$electron";
647
- } | {
648
- readonly name: "appium";
649
- readonly value: "@wdio/appium-service$--$appium";
650
- } | {
651
- readonly name: "eslinter-service";
652
- readonly value: "wdio-eslinter-service$--$eslinter";
653
- } | {
654
- readonly name: "lambdatest";
655
- readonly value: "wdio-lambdatest-service$--$lambdatest";
656
- } | {
657
- readonly name: "zafira-listener";
658
- readonly value: "wdio-zafira-listener-service$--$zafira-listener";
659
- } | {
660
- readonly name: "reportportal";
661
- readonly value: "wdio-reportportal-service$--$reportportal";
662
- } | {
663
- readonly name: "docker";
664
- readonly value: "wdio-docker-service$--$docker";
665
- } | {
666
- readonly name: "ui5";
667
- readonly value: "wdio-ui5-service$--$ui5";
668
- } | {
669
- readonly name: "wiremock";
670
- readonly value: "wdio-wiremock-service$--$wiremock";
671
- } | {
672
- readonly name: "ng-apimock";
673
- readonly value: "wdio-ng-apimock-service$--ng-apimock";
674
- } | {
675
- readonly name: "slack";
676
- readonly value: "wdio-slack-service$--$slack";
677
- } | {
678
- readonly name: "cucumber-viewport-logger";
679
- readonly value: "wdio-cucumber-viewport-logger-service$--$cucumber-viewport-logger";
680
- } | {
681
- readonly name: "intercept";
682
- readonly value: "wdio-intercept-service$--$intercept";
683
- } | {
684
- readonly name: "docker";
685
- readonly value: "wdio-docker-service$--$docker";
686
- } | {
687
- readonly name: "image-comparison";
688
- readonly value: "wdio-image-comparison-service$--$image-comparison";
689
- } | {
690
- readonly name: "novus-visual-regression";
691
- readonly value: "wdio-novus-visual-regression-service$--$novus-visual-regression";
692
- } | {
693
- readonly name: "rerun";
694
- readonly value: "wdio-rerun-service$--$rerun";
695
- } | {
696
- readonly name: "winappdriver";
697
- readonly value: "wdio-winappdriver-service$--$winappdriver";
698
- } | {
699
- readonly name: "ywinappdriver";
700
- readonly value: "wdio-ywinappdriver-service$--$ywinappdriver";
701
- } | {
702
- readonly name: "performancetotal";
703
- readonly value: "wdio-performancetotal-service$--$performancetotal";
704
- } | {
705
- readonly name: "cleanuptotal";
706
- readonly value: "wdio-cleanuptotal-service$--$cleanuptotal";
707
- } | {
708
- readonly name: "aws-device-farm";
709
- readonly value: "wdio-aws-device-farm-service$--$aws-device-farm";
710
- } | {
711
- readonly name: "ocr-native-apps";
712
- readonly value: "wdio-ocr-service$--$ocr-native-apps";
713
- } | {
714
- readonly name: "ms-teams";
715
- readonly value: "wdio-ms-teams-service$--$ms-teams";
716
- } | {
717
- readonly name: "tesults";
718
- readonly value: "wdio-tesults-service$--$tesults";
719
- } | {
720
- readonly name: "azure-devops";
721
- readonly value: "@gmangiapelo/wdio-azure-devops-service$--$azure-devops";
722
- } | {
723
- readonly name: "google-Chat";
724
- readonly value: "wdio-google-chat-service$--$google-chat";
725
- } | {
726
- readonly name: "qmate-service";
727
- readonly value: "@sap_oss/wdio-qmate-service$--$qmate-service";
728
- } | {
729
- readonly name: "vitaqai";
730
- readonly value: "wdio-vitaqai-service$--$vitaqai";
731
- } | {
732
- readonly name: "robonut";
733
- readonly value: "wdio-robonut-service$--$robonut";
734
- } | undefined)[]>;
735
- default: (answers: Questionnair) => Promise<("wdio-vite-service$--$vite" | "wdio-nuxt-service$--$nuxt" | "@wdio/firefox-profile-service$--$firefox-profile" | "@wdio/gmail-service$--$gmail" | "@wdio/sauce-service$--$sauce" | "@wdio/testingbot-service$--$testingbot" | "@wdio/crossbrowsertesting-service$--$crossbrowsertesting" | "@wdio/browserstack-service$--$browserstack" | "@wdio/devtools-service$--$devtools" | "wdio-vscode-service$--$vscode" | "wdio-electron-service$--$electron" | "@wdio/appium-service$--$appium" | "wdio-eslinter-service$--$eslinter" | "wdio-lambdatest-service$--$lambdatest" | "wdio-zafira-listener-service$--$zafira-listener" | "wdio-reportportal-service$--$reportportal" | "wdio-docker-service$--$docker" | "wdio-ui5-service$--$ui5" | "wdio-wiremock-service$--$wiremock" | "wdio-ng-apimock-service$--ng-apimock" | "wdio-slack-service$--$slack" | "wdio-cucumber-viewport-logger-service$--$cucumber-viewport-logger" | "wdio-intercept-service$--$intercept" | "wdio-image-comparison-service$--$image-comparison" | "wdio-novus-visual-regression-service$--$novus-visual-regression" | "wdio-rerun-service$--$rerun" | "wdio-winappdriver-service$--$winappdriver" | "wdio-ywinappdriver-service$--$ywinappdriver" | "wdio-performancetotal-service$--$performancetotal" | "wdio-cleanuptotal-service$--$cleanuptotal" | "wdio-aws-device-farm-service$--$aws-device-farm" | "wdio-ocr-service$--$ocr-native-apps" | "wdio-ms-teams-service$--$ms-teams" | "wdio-tesults-service$--$tesults" | "@gmangiapelo/wdio-azure-devops-service$--$azure-devops" | "wdio-google-chat-service$--$google-chat" | "@sap_oss/wdio-qmate-service$--$qmate-service" | "wdio-vitaqai-service$--$vitaqai" | "wdio-robonut-service$--$robonut" | undefined)[]>;
228
+ } | undefined)[];
229
+ default: (answers: Questionnair) => string[];
736
230
  when?: undefined;
737
231
  } | {
738
232
  type: string;