elementus-ai 1.0.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.
- package/LICENSE +21 -0
- package/README.md +292 -0
- package/elementus.js +1288 -0
- package/package.json +42 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "elementus-ai",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Self-healing element resolution for Playwright, WDIO & Appium. AI-powered fallback when selectors break.",
|
|
5
|
+
"main": "elementus.js",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"playwright",
|
|
8
|
+
"webdriverio",
|
|
9
|
+
"wdio",
|
|
10
|
+
"appium",
|
|
11
|
+
"self-healing",
|
|
12
|
+
"ai",
|
|
13
|
+
"locator",
|
|
14
|
+
"selector",
|
|
15
|
+
"test-automation",
|
|
16
|
+
"element-resolution",
|
|
17
|
+
"llm",
|
|
18
|
+
"gemini",
|
|
19
|
+
"vision"
|
|
20
|
+
],
|
|
21
|
+
"author": "Filip Gajic",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@playwright/test": ">=1.30.0"
|
|
25
|
+
},
|
|
26
|
+
"peerDependenciesMeta": {
|
|
27
|
+
"@playwright/test": {
|
|
28
|
+
"optional": true
|
|
29
|
+
},
|
|
30
|
+
"webdriverio": {
|
|
31
|
+
"optional": true
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18.0.0"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"elementus.js",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
]
|
|
42
|
+
}
|