ff-automationv2 2.2.6 → 2.2.7
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 +8 -8
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# FireFlink AI Automation Platform
|
|
2
2
|
|
|
3
3
|
Enterprise-grade AI-powered automation engine that transforms natural
|
|
4
4
|
language user stories into executable browser automation scripts using
|
|
@@ -14,13 +14,13 @@ directly into backend infrastructure
|
|
|
14
14
|
|
|
15
15
|
## Core Capabilities
|
|
16
16
|
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
17
|
+
- AI Step Generation
|
|
18
|
+
- Intelligent Element Resolution
|
|
19
|
+
- DOM Annotation Engine (FF-inspecter system)
|
|
20
|
+
- Modular Action Handler Framework
|
|
21
|
+
- Failure Isolation & Safe Termination
|
|
22
|
+
- Token Usage Monitoring
|
|
23
|
+
- API Integration Layer
|
|
24
24
|
|
|
25
25
|
## High-Level Execution Lifecycle
|
|
26
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ff-automationv2",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "This lib is used to automate the manual testcase",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"prepare": "husky",
|
|
24
24
|
"lint": "eslint src --max-warnings=0",
|
|
25
25
|
"test": "npm run build && node dist/tests/test12.js",
|
|
26
|
+
"test1": "npm run build && node dist/tests/test.js",
|
|
26
27
|
"llm": "npm run build && node dist/tests/testllm.js",
|
|
27
28
|
"dev": "npm run build && node dist/index.js",
|
|
28
29
|
"start": "node dist/index.js",
|
|
@@ -49,7 +50,8 @@
|
|
|
49
50
|
"nodemon": "3.1.11",
|
|
50
51
|
"ts-node": "10.9.2",
|
|
51
52
|
"typescript": "^5.9.3",
|
|
52
|
-
"typescript-eslint": "8.56.0"
|
|
53
|
+
"typescript-eslint": "8.56.0",
|
|
54
|
+
"webdriverio": "9.26.1"
|
|
53
55
|
},
|
|
54
56
|
"dependencies": {
|
|
55
57
|
"@xmldom/xmldom": "^0.8.11",
|