Skip to content

Commit 9e36bb5

Browse files
authored
Merge pull request #2852 from modernweb-dev/feat/wdio-v9
feat: upgrade WebdriverIO to v9, drop JWP capabilities
2 parents 7a934f8 + c8d8352 commit 9e36bb5

File tree

13 files changed

+2308
-1683
lines changed

13 files changed

+2308
-1683
lines changed

.changeset/grumpy-meals-kick.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@web/test-runner-browserstack': minor
3+
'@web/test-runner-saucelabs': minor
4+
'@web/test-runner-webdriver': minor
5+
---
6+
7+
Upgrade WebdriverIO to v9, drop JWP capabilities

docs/docs/test-runner/browser-launchers/saucelabs.md

-27
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,6 @@ export default {
6868
browserVersion: '11.0',
6969
platformName: 'Windows 7',
7070
}),
71-
72-
sauceLabsLauncher({
73-
browserName: 'iphone',
74-
platform: 'iPhone X Simulator',
75-
version: '13.0',
76-
}),
7771
],
7872
};
7973
```
@@ -141,24 +135,3 @@ export default {
141135
],
142136
};
143137
```
144-
145-
### JWP Capabilities
146-
147-
W3C webdriver capabilities are not yet fully implemented for Sauce Labs simulators. If you need to run the tests on iPhone Simulator, you need to use JWP capabilities.
148-
149-
The following steps are required to use JWP capabilities with Sauce Labs launcher:
150-
151-
- Use `version` instead of `browserVersion`,
152-
- Do not set a `sauce:options` property.
153-
154-
```js
155-
export default {
156-
browsers: [
157-
sauceLabsLauncher({
158-
browserName: 'iphone',
159-
platform: 'iPhone X Simulator',
160-
version: '13.0',
161-
}),
162-
],
163-
};
164-
```

0 commit comments

Comments
 (0)