@rnw-community/wdio 0.66.0 → 0.67.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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/readme.md +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rnw-community/wdio",
3
- "version": "0.66.0",
3
+ "version": "0.67.0",
4
4
  "description": "WDIO commands, page objects and utils",
5
5
  "keywords": [
6
6
  "wdio",
@@ -42,9 +42,9 @@
42
42
  "engines": {
43
43
  "node": ">=18.0.0"
44
44
  },
45
- "gitHead": "fddb08057dbac1a26d3470243ac1141a48e48823",
45
+ "gitHead": "91146d1e4c1ab466f815aa3cd7ee41affbae41ed",
46
46
  "dependencies": {
47
- "@rnw-community/shared": "0.66.0",
47
+ "@rnw-community/shared": "0.67.0",
48
48
  "@wdio/globals": "^8.32.0",
49
49
  "@wdio/protocols": "^8.32.0",
50
50
  "webdriverio": "^8.32.0"
package/readme.md CHANGED
@@ -11,6 +11,18 @@ WDIO commands and utils.
11
11
  - [ ] Rename all tests `its` properly after API stabilizes
12
12
  - [ ] Write docs with the examples
13
13
  - [ ] Add tests for extended class instance ctor return from async function - it resolves to WDIO element =)
14
+ - [ ] Rename everything with `$` to `CSS` to make things more clear, leave backward compatibility
15
+ - [ ] Remove all dependencies from `@wdio`, library should be agnostic, and support `wdio` and `playwright` via adapters(maybe others):
16
+ - [ ] Create generic adapter and element interface
17
+ - [ ] Playwright does not support ChainablePromise, find a best way for this API(we still can have it btw)
18
+ - [ ] Add `wdio` adapter
19
+ - [ ] Add `playwright` adapter
20
+ - [ ] Add `puppeteer` adapter
21
+ - [ ] Add check and human readable error for stale/missing RootEl in the rooted component and tests/docs for this case
22
+ - [ ] rename `get*Component*` mixins to community standard
23
+ - [ ] refactor Component classes proxy approach, add more tests
24
+ - [ ] add documentation and tests for each custom command, make writing this streamlined and extendable
25
+ - [ ] add documentation and tests for parent component inheritance and tests
14
26
 
15
27
  ## Installation
16
28