appium-novawindows2-driver 0.2.2 → 0.2.4
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/LICENSE +201 -201
- package/README.md +554 -554
- package/build/lib/commands/app.d.ts.map +1 -1
- package/build/lib/commands/app.js +35 -31
- package/build/lib/commands/app.js.map +1 -1
- package/build/lib/commands/extension.d.ts +1 -1
- package/build/lib/commands/extension.d.ts.map +1 -1
- package/build/lib/commands/extension.js +26 -26
- package/build/lib/commands/extension.js.map +1 -1
- package/build/lib/commands/file.js +22 -22
- package/build/lib/commands/functions.js +189 -189
- package/build/lib/commands/index.d.ts +1 -1
- package/build/lib/commands/index.d.ts.map +1 -1
- package/build/lib/commands/powershell.d.ts.map +1 -1
- package/build/lib/commands/powershell.js +164 -197
- package/build/lib/commands/powershell.js.map +1 -1
- package/build/lib/driver.d.ts +0 -1
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/driver.js +7 -3
- package/build/lib/driver.js.map +1 -1
- package/build/lib/powershell/elements.js +738 -738
- package/build/lib/powershell/msaa.d.ts +10 -0
- package/build/lib/powershell/msaa.d.ts.map +1 -0
- package/build/lib/powershell/msaa.js +188 -0
- package/build/lib/powershell/msaa.js.map +1 -0
- package/build/lib/temp/MSAAHelper.dll +0 -0
- package/build/lib/winapi/uia.d.ts +163 -0
- package/build/lib/winapi/uia.d.ts.map +1 -0
- package/build/lib/winapi/uia.js +677 -0
- package/build/lib/winapi/uia.js.map +1 -0
- package/build/lib/xpath/native.d.ts +14 -0
- package/build/lib/xpath/native.d.ts.map +1 -0
- package/build/lib/xpath/native.js +329 -0
- package/build/lib/xpath/native.js.map +1 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +64 -63
package/package.json
CHANGED
|
@@ -1,63 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "appium-novawindows2-driver",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Appium driver for Windows",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"appium",
|
|
7
|
-
"novawindows2",
|
|
8
|
-
"uiautomation",
|
|
9
|
-
"powershell",
|
|
10
|
-
"automated testing",
|
|
11
|
-
"windows"
|
|
12
|
-
],
|
|
13
|
-
"main": "build/lib/driver.js",
|
|
14
|
-
"files": [
|
|
15
|
-
"build"
|
|
16
|
-
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "tsc -b",
|
|
19
|
-
"watch": "tsc -b --watch",
|
|
20
|
-
"lint": "eslint .",
|
|
21
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
22
|
-
},
|
|
23
|
-
"author": "nguyenvanhuy0612",
|
|
24
|
-
"license": "Apache-2.0",
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "https://github.com/nguyenvanhuy0612/appium-novawindows2-driver.git"
|
|
28
|
-
},
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/nguyenvanhuy0612/appium-novawindows2-driver/issues"
|
|
31
|
-
},
|
|
32
|
-
"peerDependencies": {
|
|
33
|
-
"appium": "^3.1.0"
|
|
34
|
-
},
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"@appium/base-driver": "^10.1.0",
|
|
37
|
-
"bezier-easing": "^2.1.0",
|
|
38
|
-
"koffi": "^2.14.1",
|
|
39
|
-
"xpath-analyzer": "^3.0.1"
|
|
40
|
-
},
|
|
41
|
-
"appium": {
|
|
42
|
-
"driverName": "novawindows2",
|
|
43
|
-
"automationName": "NovaWindows2",
|
|
44
|
-
"platformNames": [
|
|
45
|
-
"Windows"
|
|
46
|
-
],
|
|
47
|
-
"mainClass": "NovaWindows2Driver"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@appium/eslint-config-appium-ts": "^2.0.3",
|
|
51
|
-
"@appium/tsconfig": "^1.1.0",
|
|
52
|
-
"@appium/types": "^1.1.0",
|
|
53
|
-
"@eslint/js": "^9.38.0",
|
|
54
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
55
|
-
"@semantic-release/git": "^10.0.1",
|
|
56
|
-
"@types/node": "^24.8.1",
|
|
57
|
-
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
58
|
-
"eslint": "^9.38.0",
|
|
59
|
-
"semantic-release": "^25.0.1",
|
|
60
|
-
"typescript": "^5.9.3",
|
|
61
|
-
"typescript-eslint": "^8.46.1"
|
|
62
|
-
|
|
63
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "appium-novawindows2-driver",
|
|
3
|
+
"version": "0.2.4",
|
|
4
|
+
"description": "Appium driver for Windows",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"appium",
|
|
7
|
+
"novawindows2",
|
|
8
|
+
"uiautomation",
|
|
9
|
+
"powershell",
|
|
10
|
+
"automated testing",
|
|
11
|
+
"windows"
|
|
12
|
+
],
|
|
13
|
+
"main": "build/lib/driver.js",
|
|
14
|
+
"files": [
|
|
15
|
+
"build"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc -b",
|
|
19
|
+
"watch": "tsc -b --watch",
|
|
20
|
+
"lint": "eslint .",
|
|
21
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
22
|
+
},
|
|
23
|
+
"author": "nguyenvanhuy0612",
|
|
24
|
+
"license": "Apache-2.0",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/nguyenvanhuy0612/appium-novawindows2-driver.git"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/nguyenvanhuy0612/appium-novawindows2-driver/issues"
|
|
31
|
+
},
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"appium": "^3.1.0"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@appium/base-driver": "^10.1.0",
|
|
37
|
+
"bezier-easing": "^2.1.0",
|
|
38
|
+
"koffi": "^2.14.1",
|
|
39
|
+
"xpath-analyzer": "^3.0.1"
|
|
40
|
+
},
|
|
41
|
+
"appium": {
|
|
42
|
+
"driverName": "novawindows2",
|
|
43
|
+
"automationName": "NovaWindows2",
|
|
44
|
+
"platformNames": [
|
|
45
|
+
"Windows"
|
|
46
|
+
],
|
|
47
|
+
"mainClass": "NovaWindows2Driver"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@appium/eslint-config-appium-ts": "^2.0.3",
|
|
51
|
+
"@appium/tsconfig": "^1.1.0",
|
|
52
|
+
"@appium/types": "^1.1.0",
|
|
53
|
+
"@eslint/js": "^9.38.0",
|
|
54
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
55
|
+
"@semantic-release/git": "^10.0.1",
|
|
56
|
+
"@types/node": "^24.8.1",
|
|
57
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
58
|
+
"eslint": "^9.38.0",
|
|
59
|
+
"semantic-release": "^25.0.1",
|
|
60
|
+
"typescript": "^5.9.3",
|
|
61
|
+
"typescript-eslint": "^8.46.1",
|
|
62
|
+
"webdriverio": "^9.23.0"
|
|
63
|
+
}
|
|
64
|
+
}
|