testdriverai 7.5.10 → 7.5.12
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/CHANGELOG.md +15 -0
- package/agent/lib/system.js +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## 7.5.12 (2026-03-06)
|
|
2
|
+
|
|
3
|
+
## 🔧 Maintenance
|
|
4
|
+
|
|
5
|
+
- Update infrastructure configuration and improve CI/CD pipeline reliability [API, SDK] (42f8bd3c)
|
|
6
|
+
|
|
7
|
+
## 7.5.11 (2026-03-06)
|
|
8
|
+
|
|
9
|
+
## 🔧 Maintenance
|
|
10
|
+
|
|
11
|
+
- Consolidate GitHub workflows by removing nested workflow files and centralizing VS Code build and test processes (79701b5f)
|
|
12
|
+
- Remove extensive GitHub Copilot skills documentation from SDK package to streamline repository structure (ea19cf96)
|
|
13
|
+
- Update development container configuration with improved VS Code extensions (3c8ebe5e)
|
|
14
|
+
- Update package publishing configuration to use latest tag (8ba8136d)
|
|
15
|
+
|
|
1
16
|
## 7.5.10 (2026-03-06)
|
|
2
17
|
|
|
3
18
|
## 🔧 Maintenance
|
package/agent/lib/system.js
CHANGED
|
@@ -164,9 +164,11 @@ const createSystem = (emitter, sandbox, config) => {
|
|
|
164
164
|
const cursorPath = path.join(__dirname, "resources", "cursor-2.png");
|
|
165
165
|
const mousePos = await getMousePosition();
|
|
166
166
|
|
|
167
|
-
// Load and composite the mouse cursor image
|
|
168
|
-
|
|
169
|
-
|
|
167
|
+
// Load and composite the mouse cursor image if we have valid coordinates
|
|
168
|
+
if (mousePos && typeof mousePos.x === "number" && typeof mousePos.y === "number") {
|
|
169
|
+
const cursorImage = await Jimp.read(cursorPath);
|
|
170
|
+
image.composite(cursorImage, mousePos.x, mousePos.y);
|
|
171
|
+
}
|
|
170
172
|
}
|
|
171
173
|
|
|
172
174
|
await image.writeAsync(step2);
|