elementus-ai 1.0.2 → 1.1.1
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/README.md +47 -17
- package/elementus.js +1174 -193
- package/package.json +16 -1
- package/wdio.d.ts +1 -3
package/package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elementus-ai",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Self-healing element resolution for Playwright, WDIO & Appium. AI-powered fallback when selectors break.",
|
|
5
5
|
"main": "elementus.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "playwright test test/playwright.spec.js",
|
|
8
|
+
"test:smoke": "playwright test test/playwright.spec.js -g \"T01 |T02 |T09 |T17 |T23 \""
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/Morph93/elementus.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/Morph93/elementus/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/Morph93/elementus#readme",
|
|
6
18
|
"keywords": [
|
|
7
19
|
"playwright",
|
|
8
20
|
"webdriverio",
|
|
@@ -20,6 +32,9 @@
|
|
|
20
32
|
],
|
|
21
33
|
"author": "Filip Gajic",
|
|
22
34
|
"license": "MIT",
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@playwright/test": "^1.60.0"
|
|
37
|
+
},
|
|
23
38
|
"peerDependencies": {
|
|
24
39
|
"@playwright/test": ">=1.30.0"
|
|
25
40
|
},
|