|
96 | 96 | * url: 'http://localhost/' |
97 | 97 | * browser: chrome |
98 | 98 | * capabilities: |
99 | | - * chromeOptions: |
| 99 | + * goog:chromeOptions: |
100 | 100 | * args: ["--headless"] |
101 | 101 | * ``` |
102 | 102 | * |
|
131 | 131 | * window_size: 2000x1000 |
132 | 132 | * port: 9515 |
133 | 133 | * capabilities: |
134 | | - * chromeOptions: |
| 134 | + * goog:chromeOptions: |
135 | 135 | * args: ["--headless"] # Run Chrome in headless mode |
136 | 136 | * prefs: |
137 | 137 | * download.default_directory: "..." |
|
173 | 173 | * |
174 | 174 | * 1. Create an account at [SauceLabs.com](https://saucelabs.com/) to get your username and access key |
175 | 175 | * 2. In the module configuration use the format `username`:`access_key`@ondemand.saucelabs.com' for `host` |
176 | | - * 3. Configure `platform` under `capabilities` to define the [Operating System](https://docs.saucelabs.com/basics/platform-configurator/) |
| 176 | + * 3. Configure `platformName` under `capabilities` to define the [Operating System](https://docs.saucelabs.com/basics/platform-configurator/) |
177 | 177 | * 4. run a tunnel app if your site can't be accessed from Internet |
178 | 178 | * |
179 | 179 | * ```yaml |
|
185 | 185 | * port: 80 |
186 | 186 | * browser: chrome |
187 | 187 | * capabilities: |
188 | | - * platform: 'Windows 10' |
| 188 | + * platformName: 'Windows 10' |
189 | 189 | * ``` |
190 | 190 | * |
191 | 191 | * ### BrowserStack |
|
204 | 204 | * port: 80 |
205 | 205 | * browser: chrome |
206 | 206 | * capabilities: |
207 | | - * os: Windows |
208 | | - * os_version: 10 |
209 | | - * browserstack.local: true # for local testing |
| 207 | + * bstack:options: |
| 208 | + * os: Windows |
| 209 | + * osVersion: 10 |
| 210 | + * local: true # for local testing |
210 | 211 | * ``` |
211 | 212 | * |
212 | 213 | * ### LambdaTest |
|
236 | 237 | * |
237 | 238 | * 1. Create an account at [TestingBot](https://testingbot.com/) to get your key and secret |
238 | 239 | * 2. In the module configuration use the format `key`:`secret`@hub.testingbot.com' for `host` |
239 | | - * 3. Configure `platform` under `capabilities` to define the [Operating System](https://testingbot.com/support/getting-started/browsers.html) |
| 240 | + * 3. Configure `platformName` under `capabilities` to define the [Operating System](https://testingbot.com/support/getting-started/browsers.html) |
240 | 241 | * 4. Run [TestingBot Tunnel](https://testingbot.com/support/other/tunnel) if your site can't be accessed from Internet |
241 | 242 | * |
242 | 243 | * ```yaml |
|
248 | 249 | * port: 80 |
249 | 250 | * browser: chrome |
250 | 251 | * capabilities: |
251 | | - * platform: Windows 10 |
| 252 | + * platformName: Windows 10 |
252 | 253 | * ``` |
253 | 254 | * |
254 | 255 | * ## Configuration |
|
285 | 286 | * browser: firefox |
286 | 287 | * window_size: 1024x768 |
287 | 288 | * capabilities: |
288 | | - * unexpectedAlertBehaviour: 'accept' |
289 | | - * firefox_profile: '~/firefox-profiles/codeception-profile.zip.b64' |
| 289 | + * unhandledPromptBehaviour: 'accept' |
| 290 | + * moz:firefoxOptions: |
| 291 | + * profile: '~/firefox-profiles/codeception-profile.zip.b64' |
290 | 292 | * ``` |
291 | 293 | * |
292 | 294 | * ## Loading Parts from other Modules |
|
0 commit comments