mobilewright 0.0.56 → 0.0.57

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/README.md +1 -1
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -21,7 +21,7 @@ If you've used Playwright, you already know Mobilewright.
21
21
  | Setup | `npm install mobilewright` | Server + drivers + caps | React Native only | Xcode/AS only |
22
22
  | Cross-platform | iOS + Android, one API | Yes, verbose | React Native only | Single platform |
23
23
  | AI agent support | First-class (accessibility tree) | Limited | No | No |
24
- | Real devices in the cloud | Via [Mobile Next Cloud](https://mobilenext.ai/cloud?utm_source=github&utm_medium=readme&utm_campaign=mobilewright&utm_content=comparison) | Yes (complex) | Simulators only | Yes |
24
+ | Real devices in the cloud | Via [Mobile Next Cloud](https://mobilenext.ai/cloud?utm_source=github&utm_medium=readme&utm_campaign=mobilewright&utm_content=comparison) and [others](https://mobilewright.dev/docs/cloud-providers/) | Yes (complex) | Simulators only | Yes |
25
25
  | Locators | Semantic roles + labels | XPath, CSS, ID | Test IDs | Native queries |
26
26
 
27
27
  ## Built for AI agents
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "mobilewright",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
4
4
  "description": "Mobile device automation framework inspired by Playwright",
5
5
  "homepage": "https://mobilewright.dev",
6
6
  "license": "Apache-2.0",
7
7
  "engines": {
8
- "node": ">=20.19"
8
+ "node": ">=22.12.0"
9
9
  },
10
10
  "type": "module",
11
11
  "main": "./dist/index.js",
@@ -34,18 +34,18 @@
34
34
  "templates"
35
35
  ],
36
36
  "dependencies": {
37
- "@mobilewright/core": "^0.0.56",
38
- "@mobilewright/driver-mobilecli": "^0.0.56",
39
- "@mobilewright/driver-mobilenext": "^0.0.56",
40
- "@mobilewright/inspector": "^0.0.56",
41
- "@mobilewright/protocol": "^0.0.56",
42
- "commander": "^14.0.3",
37
+ "@mobilewright/core": "^0.0.57",
38
+ "@mobilewright/driver-mobilecli": "^0.0.57",
39
+ "@mobilewright/driver-mobilenext": "^0.0.57",
40
+ "@mobilewright/inspector": "^0.0.57",
41
+ "@mobilewright/protocol": "^0.0.57",
42
+ "commander": "^15.0.0",
43
43
  "open": "^10.2.0",
44
44
  "debug": "^4.4.3",
45
- "playwright": "1.58.2",
46
- "ws": "^8.18.0"
45
+ "playwright": "1.62.1",
46
+ "ws": "^8.21.3"
47
47
  },
48
48
  "devDependencies": {
49
- "@types/ws": "^8.5.0"
49
+ "@types/ws": "^8.18.1"
50
50
  }
51
51
  }