testdriverai 7.5.11 → 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 CHANGED
@@ -1,3 +1,9 @@
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
+
1
7
  ## 7.5.11 (2026-03-06)
2
8
 
3
9
  ## 🔧 Maintenance
@@ -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
- const cursorImage = await Jimp.read(cursorPath);
169
- image.composite(cursorImage, mousePos.x, mousePos.y);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.5.11",
3
+ "version": "7.5.12",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",