create-wdio 9.0.0 → 9.17.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/README.md +12 -7
- package/assets/demo.gif +0 -0
- package/build/cli/config.d.ts +51 -0
- package/build/cli/config.d.ts.map +1 -0
- package/build/cli/install.d.ts +12 -0
- package/build/cli/install.d.ts.map +1 -0
- package/build/cli/utils.d.ts +18 -0
- package/build/cli/utils.d.ts.map +1 -0
- package/build/config/cli.d.ts +2 -0
- package/build/config/cli.d.ts.map +1 -0
- package/build/config/cli.js +1632 -0
- package/build/constants.d.ts +248 -0
- package/build/constants.d.ts.map +1 -0
- package/build/index.d.ts +4 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +1018 -54
- package/build/install/cli.d.ts +2 -0
- package/build/install/cli.d.ts.map +1 -0
- package/build/install/cli.js +1719 -0
- package/build/install.d.ts +4 -0
- package/build/install.d.ts.map +1 -0
- package/build/templates/EjsHelpers.d.ts +18 -0
- package/build/templates/EjsHelpers.d.ts.map +1 -0
- package/build/templates/exampleFiles/browser/Component.css.ejs +121 -0
- package/build/templates/exampleFiles/browser/Component.lit.ejs +154 -0
- package/build/templates/exampleFiles/browser/Component.lit.test.ejs +24 -0
- package/build/templates/exampleFiles/browser/Component.preact.ejs +28 -0
- package/build/templates/exampleFiles/browser/Component.preact.test.ejs +59 -0
- package/build/templates/exampleFiles/browser/Component.react.ejs +29 -0
- package/build/templates/exampleFiles/browser/Component.react.test.ejs +58 -0
- package/build/templates/exampleFiles/browser/Component.solid.ejs +28 -0
- package/build/templates/exampleFiles/browser/Component.solid.test.ejs +58 -0
- package/build/templates/exampleFiles/browser/Component.stencil.ejs +43 -0
- package/build/templates/exampleFiles/browser/Component.stencil.test.ejs +45 -0
- package/build/templates/exampleFiles/browser/Component.svelte.ejs +47 -0
- package/build/templates/exampleFiles/browser/Component.svelte.test.ejs +58 -0
- package/build/templates/exampleFiles/browser/Component.vue.ejs +34 -0
- package/build/templates/exampleFiles/browser/Component.vue.test.ejs +62 -0
- package/build/templates/exampleFiles/browser/standalone.test.ejs +13 -0
- package/build/templates/exampleFiles/cucumber/features/login.feature +12 -0
- package/build/templates/exampleFiles/cucumber/step_definitions/steps.js.ejs +55 -0
- package/build/templates/exampleFiles/mochaJasmine/test.e2e.js.ejs +11 -0
- package/build/templates/exampleFiles/pageobjects/login.page.js.ejs +45 -0
- package/build/templates/exampleFiles/pageobjects/page.js.ejs +17 -0
- package/build/templates/exampleFiles/pageobjects/secure.page.js.ejs +20 -0
- package/build/templates/exampleFiles/serenity-js/common/config/serenity.properties.ejs +1 -0
- package/build/templates/exampleFiles/serenity-js/common/serenity/github-api/GitHubStatus.ts.ejs +41 -0
- package/build/templates/exampleFiles/serenity-js/common/serenity/todo-list-app/TodoList.ts.ejs +100 -0
- package/build/templates/exampleFiles/serenity-js/common/serenity/todo-list-app/TodoListItem.ts.ejs +36 -0
- package/build/templates/exampleFiles/serenity-js/cucumber/step-definitions/steps.ts.ejs +37 -0
- package/build/templates/exampleFiles/serenity-js/cucumber/support/parameter.config.ts.ejs +18 -0
- package/build/templates/exampleFiles/serenity-js/cucumber/todo-list/completing_items.feature.ejs +23 -0
- package/build/templates/exampleFiles/serenity-js/cucumber/todo-list/narrative.md.ejs +17 -0
- package/build/templates/exampleFiles/serenity-js/jasmine/example.spec.ts.ejs +86 -0
- package/build/templates/exampleFiles/serenity-js/mocha/example.spec.ts.ejs +88 -0
- package/build/templates/snippets/afterTest.ejs +20 -0
- package/build/templates/snippets/capabilities.ejs +57 -0
- package/build/templates/snippets/cucumber.ejs +50 -0
- package/build/templates/snippets/electronTest.js.ejs +7 -0
- package/build/templates/snippets/jasmine.ejs +20 -0
- package/build/templates/snippets/macosTest.js.ejs +11 -0
- package/build/templates/snippets/mocha.ejs +14 -0
- package/build/templates/snippets/reporters.ejs +14 -0
- package/build/templates/snippets/serenity.ejs +18 -0
- package/build/templates/snippets/services.ejs +18 -0
- package/build/templates/snippets/testWithPO.js.ejs +22 -0
- package/build/templates/snippets/testWithoutPO.js.ejs +19 -0
- package/build/templates/snippets/vscodeTest.js.ejs +9 -0
- package/build/templates/wdio.conf.tpl.ejs +412 -0
- package/build/types.d.ts +99 -0
- package/build/types.d.ts.map +1 -0
- package/build/utils/index.d.ts +2 -0
- package/build/utils/index.d.ts.map +1 -0
- package/build/utils/index.js +849 -0
- package/build/utils.d.ts +78 -0
- package/build/utils.d.ts.map +1 -0
- package/package.json +60 -41
- package/.eslintrc.cjs +0 -37
- package/__mocks__/commander.ts +0 -18
- package/build/constants.js +0 -51
- package/build/types.js +0 -1
- package/build/utils.js +0 -38
- package/vitest.config.ts +0 -23
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
import pkg from '../package.json';
|
|
2
|
+
import type { Questionnair } from './types.js';
|
|
3
|
+
export { pkg };
|
|
4
|
+
export declare const colorItBold: import("chalk").ChalkInstance;
|
|
5
|
+
export declare const colorIt: import("chalk").ChalkInstance;
|
|
6
|
+
export type PACKAGE_MANAGER = 'npm' | 'pnpm' | 'yarn' | 'bun';
|
|
7
|
+
export declare const DEFAULT_NPM_TAG = "latest";
|
|
8
|
+
export declare const ASCII_ROBOT = "\n -:...........................-:.\n + +\n `` + `...` `...` + `\n ./+/ + .:://:::` `::///::` ` + ++/.\n .+oo+ + /:+ooo+-/ /-+ooo+-/ ./ + +oo+.\n -ooo+ + /-+ooo+-/ /-+ooo+-/ .: + +ooo.\n -+o+ + `::///:-` `::///::` + +o+-\n ``. /. ````` ````` .: .``\n .----------------------------.\n `-::::::::::::::::::::::::::::::::::::::::-`\n .+oooo/:------------------------------:/oooo+.\n `.--/oooo- :oooo/--.`\n .::-``:oooo` .oooo-``-::.\n ./-` -oooo`--.: :.-- .oooo- `-/.\n -/` `-/oooo////////////////////////////////////oooo/.` `/-\n`+` `/+oooooooooooooooooooooooooooooooooooooooooooooooo+:` .+`\n-/ +o/.:oooooooooooooooooooooooooooooooooooooooooooo:-/o/ +.\n-/ .o+ -oooosoooososssssooooo------------------:oooo- `oo` +.\n-/ .o+ -oooodooohyyssosshoooo` .oooo- oo. +.\n-/ .o+ -oooodooysdooooooyyooo` `.--.`` .:::-oooo- oo. +.\n-/ .o+ -oooodoyyodsoooooyyooo.//-..-:/:.`.//.`./oooo- oo. +.\n-/ .o+ -oooohsyoooyysssysoooo+-` `-:::. .oooo- oo. +.\n-/ .o+ -ooooosooooooosooooooo+//////////////////oooo- oo. +.\n-/ .o+ -oooooooooooooooooooooooooooooooooooooooooooo- oo. +.\n-/ .o+ -oooooooooooooooooooooooooooooooooooooooooooo- oo. +.\n-+////o+` -oooo---:///:----://::------------------:oooo- `oo////+-\n+ooooooo/`-oooo``:-```.:`.:.`.+/- .::::::::::` .oooo-`+ooooooo+\noooooooo+`-oooo`-- `/` .:+ -/-`/` .:::::::::: .oooo-.+oooooooo\n+-/+://-/ -oooo-`:`.o-`:.:-````.: .///:`````` -oooo-`/-//:+:-+\n: :..--:-:.+ooo+/://o+/-.-:////:-....-::::-....--/+ooo+.:.:--.-- /\n- /./`-:-` .:///+/ooooo/+///////////////+++ooooo/+///:. .-:.`+./ :\n:-:/. :`ooooo`/` .:.ooooo : ./---\n :`ooooo`/` .:.ooooo :\n :`ooooo./` .:-ooooo :\n :`ooooo./` .:-ooooo :\n `...:-+++++:/. ./:+++++-:...`\n :-.````````/../ /.-:````````.:-\n -/::::::::://:/+ `+/:+::::::::::+.\n :oooooooooooo++/ +++oooooooooooo-\n";
|
|
9
|
+
export declare const PROGRAM_TITLE: string;
|
|
10
|
+
export declare const UNSUPPORTED_NODE_VERSION: string;
|
|
11
|
+
export declare const INSTALL_COMMAND: Record<PACKAGE_MANAGER, string>;
|
|
12
|
+
export declare const EXECUTER: Record<PACKAGE_MANAGER, string>;
|
|
13
|
+
export declare const EXECUTE_COMMAND: Record<PACKAGE_MANAGER, string>;
|
|
14
|
+
export declare const DEV_FLAG: Record<PACKAGE_MANAGER, string>;
|
|
15
|
+
export declare const SUPPORTED_PACKAGE_MANAGERS: PACKAGE_MANAGER[];
|
|
16
|
+
export declare const CONFIG_HELPER_INTRO = "\n===============================\n\uD83E\uDD16 WDIO Configuration Wizard \uD83E\uDDD9\n===============================\n";
|
|
17
|
+
export declare const CLI_EPILOGUE: string;
|
|
18
|
+
/**
|
|
19
|
+
* We have to use a string hash for value because InquirerJS default values do not work if we have
|
|
20
|
+
* objects as a `value` to be stored from the user's answers.
|
|
21
|
+
*/
|
|
22
|
+
export declare const SUPPORTED_PACKAGES: {
|
|
23
|
+
runner: {
|
|
24
|
+
name: string;
|
|
25
|
+
value: string;
|
|
26
|
+
}[];
|
|
27
|
+
framework: {
|
|
28
|
+
name: string;
|
|
29
|
+
value: string;
|
|
30
|
+
}[];
|
|
31
|
+
reporter: ({
|
|
32
|
+
name: string;
|
|
33
|
+
value: string;
|
|
34
|
+
checked: boolean;
|
|
35
|
+
} | {
|
|
36
|
+
name: string;
|
|
37
|
+
value: string;
|
|
38
|
+
checked?: undefined;
|
|
39
|
+
})[];
|
|
40
|
+
plugin: {
|
|
41
|
+
name: string;
|
|
42
|
+
value: string;
|
|
43
|
+
}[];
|
|
44
|
+
service: {
|
|
45
|
+
name: string;
|
|
46
|
+
value: string;
|
|
47
|
+
}[];
|
|
48
|
+
};
|
|
49
|
+
export declare const configHelperSuccessMessage: ({ projectRootDir, runScript, extraInfo }: {
|
|
50
|
+
projectRootDir: string;
|
|
51
|
+
runScript: string;
|
|
52
|
+
extraInfo: string;
|
|
53
|
+
}) => string;
|
|
54
|
+
export declare const isNuxtProject: boolean;
|
|
55
|
+
export declare const SUPPORTED_CONFIG_FILE_EXTENSION: string[];
|
|
56
|
+
export declare const CONFIG_HELPER_SERENITY_BANNER = "\nLearn more about Serenity/JS:\n \uD83D\uDD17 https://serenity-js.org/\n \uD83D\uDD17 https://serenity-js.org/handbook/test-runners/webdriverio/\n";
|
|
57
|
+
export declare function usesSerenity(answers: Questionnair): boolean;
|
|
58
|
+
declare enum ProtocolOptions {
|
|
59
|
+
HTTPS = "https",
|
|
60
|
+
HTTP = "http"
|
|
61
|
+
}
|
|
62
|
+
export declare enum BackendChoice {
|
|
63
|
+
Local = "On my local machine",
|
|
64
|
+
Experitest = "In the cloud using Experitest",
|
|
65
|
+
Saucelabs = "In the cloud using Sauce Labs",
|
|
66
|
+
Browserstack = "In the cloud using BrowserStack",
|
|
67
|
+
OtherVendors = "In the cloud using Testingbot or LambdaTest or a different service",
|
|
68
|
+
Grid = "I have my own Selenium cloud"
|
|
69
|
+
}
|
|
70
|
+
export declare enum RegionOptions {
|
|
71
|
+
US = "us",
|
|
72
|
+
EU = "eu"
|
|
73
|
+
}
|
|
74
|
+
export declare enum ElectronBuildToolChoice {
|
|
75
|
+
ElectronForge = "Electron Forge (https://www.electronforge.io/)",
|
|
76
|
+
ElectronBuilder = "electron-builder (https://www.electron.build/)",
|
|
77
|
+
SomethingElse = "Something else"
|
|
78
|
+
}
|
|
79
|
+
export declare const SUPPORTED_BROWSER_RUNNER_PRESETS: ({
|
|
80
|
+
name: string;
|
|
81
|
+
value: string;
|
|
82
|
+
} | {
|
|
83
|
+
name: string;
|
|
84
|
+
value: null;
|
|
85
|
+
})[];
|
|
86
|
+
declare function isBrowserRunner(answers: Questionnair): boolean;
|
|
87
|
+
export declare const TESTING_LIBRARY_PACKAGES: Record<string, string>;
|
|
88
|
+
export declare const E2E_ENVIRONMENTS: {
|
|
89
|
+
name: string;
|
|
90
|
+
value: string;
|
|
91
|
+
}[];
|
|
92
|
+
export declare const MOBILE_ENVIRONMENTS: {
|
|
93
|
+
name: string;
|
|
94
|
+
value: string;
|
|
95
|
+
}[];
|
|
96
|
+
export declare const BROWSER_ENVIRONMENTS: ({
|
|
97
|
+
name: string;
|
|
98
|
+
value: string;
|
|
99
|
+
checked: boolean;
|
|
100
|
+
} | {
|
|
101
|
+
name: string;
|
|
102
|
+
value: string;
|
|
103
|
+
checked?: undefined;
|
|
104
|
+
})[];
|
|
105
|
+
export declare const QUESTIONNAIRE: ({
|
|
106
|
+
type: string;
|
|
107
|
+
name: string;
|
|
108
|
+
message: string;
|
|
109
|
+
choices: {
|
|
110
|
+
name: string;
|
|
111
|
+
value: string;
|
|
112
|
+
}[];
|
|
113
|
+
when?: undefined;
|
|
114
|
+
default?: undefined;
|
|
115
|
+
} | {
|
|
116
|
+
type: string;
|
|
117
|
+
name: string;
|
|
118
|
+
message: string;
|
|
119
|
+
choices: ({
|
|
120
|
+
name: string;
|
|
121
|
+
value: string;
|
|
122
|
+
} | {
|
|
123
|
+
name: string;
|
|
124
|
+
value: null;
|
|
125
|
+
})[];
|
|
126
|
+
when: typeof isBrowserRunner;
|
|
127
|
+
default?: undefined;
|
|
128
|
+
} | {
|
|
129
|
+
type: string;
|
|
130
|
+
name: string;
|
|
131
|
+
message: string;
|
|
132
|
+
default: boolean;
|
|
133
|
+
when: (answers: Questionnair) => string | false | undefined;
|
|
134
|
+
choices?: undefined;
|
|
135
|
+
} | {
|
|
136
|
+
type: string;
|
|
137
|
+
name: string;
|
|
138
|
+
message: string;
|
|
139
|
+
choices: ElectronBuildToolChoice[];
|
|
140
|
+
when: (answers: Questionnair) => boolean;
|
|
141
|
+
default?: undefined;
|
|
142
|
+
} | {
|
|
143
|
+
type: string;
|
|
144
|
+
name: string;
|
|
145
|
+
message: string;
|
|
146
|
+
choices: BackendChoice[];
|
|
147
|
+
when: (answers: Questionnair) => boolean;
|
|
148
|
+
default?: undefined;
|
|
149
|
+
} | {
|
|
150
|
+
type: string;
|
|
151
|
+
name: string;
|
|
152
|
+
message: string;
|
|
153
|
+
choices: {
|
|
154
|
+
name: string;
|
|
155
|
+
value: string;
|
|
156
|
+
}[];
|
|
157
|
+
default: string;
|
|
158
|
+
when: (answers: Questionnair) => boolean;
|
|
159
|
+
} | {
|
|
160
|
+
type: string;
|
|
161
|
+
name: string;
|
|
162
|
+
message: string;
|
|
163
|
+
when: (answers: Questionnair) => boolean | undefined;
|
|
164
|
+
choices?: undefined;
|
|
165
|
+
default?: undefined;
|
|
166
|
+
} | {
|
|
167
|
+
type: string;
|
|
168
|
+
name: string;
|
|
169
|
+
message: string;
|
|
170
|
+
default: string;
|
|
171
|
+
when: (answers: Questionnair) => boolean | undefined;
|
|
172
|
+
choices?: undefined;
|
|
173
|
+
} | {
|
|
174
|
+
type: string;
|
|
175
|
+
name: string;
|
|
176
|
+
message: string;
|
|
177
|
+
default: ProtocolOptions;
|
|
178
|
+
choices: ProtocolOptions[];
|
|
179
|
+
when: (answers: Questionnair) => boolean;
|
|
180
|
+
} | {
|
|
181
|
+
type: string;
|
|
182
|
+
name: string;
|
|
183
|
+
message: string;
|
|
184
|
+
choices: RegionOptions[];
|
|
185
|
+
when: (answers: Questionnair) => boolean;
|
|
186
|
+
default?: undefined;
|
|
187
|
+
} | {
|
|
188
|
+
type: string;
|
|
189
|
+
name: string;
|
|
190
|
+
message: string;
|
|
191
|
+
default: boolean;
|
|
192
|
+
when: (answers: Questionnair) => boolean;
|
|
193
|
+
choices?: undefined;
|
|
194
|
+
} | {
|
|
195
|
+
type: string;
|
|
196
|
+
name: string;
|
|
197
|
+
message: string;
|
|
198
|
+
choices: (answers: Questionnair) => {
|
|
199
|
+
name: string;
|
|
200
|
+
value: string;
|
|
201
|
+
}[];
|
|
202
|
+
when?: undefined;
|
|
203
|
+
default?: undefined;
|
|
204
|
+
} | {
|
|
205
|
+
type: string;
|
|
206
|
+
name: string;
|
|
207
|
+
message: string;
|
|
208
|
+
when: (answers: Questionnair) => boolean;
|
|
209
|
+
default: (answers: Questionnair) => true | Promise<boolean>;
|
|
210
|
+
choices?: undefined;
|
|
211
|
+
} | {
|
|
212
|
+
type: string;
|
|
213
|
+
name: string;
|
|
214
|
+
message: string;
|
|
215
|
+
default: (answers: Questionnair) => Promise<string>;
|
|
216
|
+
when: (answers: Questionnair) => boolean | undefined;
|
|
217
|
+
choices?: undefined;
|
|
218
|
+
} | {
|
|
219
|
+
type: string;
|
|
220
|
+
name: string;
|
|
221
|
+
message: string;
|
|
222
|
+
choices: {
|
|
223
|
+
name: string;
|
|
224
|
+
value: string;
|
|
225
|
+
}[];
|
|
226
|
+
default: never[];
|
|
227
|
+
when?: undefined;
|
|
228
|
+
} | {
|
|
229
|
+
type: string;
|
|
230
|
+
name: string;
|
|
231
|
+
message: string;
|
|
232
|
+
choices: (answers: Questionnair) => ({
|
|
233
|
+
name: string;
|
|
234
|
+
value: string;
|
|
235
|
+
} | undefined)[];
|
|
236
|
+
default: (answers: Questionnair) => string[];
|
|
237
|
+
when?: undefined;
|
|
238
|
+
} | {
|
|
239
|
+
type: string;
|
|
240
|
+
name: string;
|
|
241
|
+
message: () => string;
|
|
242
|
+
default: boolean;
|
|
243
|
+
choices?: undefined;
|
|
244
|
+
when?: undefined;
|
|
245
|
+
})[];
|
|
246
|
+
export declare const COMMUNITY_PACKAGES_WITH_TS_SUPPORT: string[];
|
|
247
|
+
export declare const DEPENDENCIES_INSTALLATION_MESSAGE = "\nTo install dependencies, execute:\n%s\n";
|
|
248
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"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"}
|
package/build/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAK7C,wBAAsB,GAAG,CAAC,SAAS,2BAAoB,iBAkCtD;AAkBD,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,WAAW,iBAqCxD"}
|