testdriverai 7.9.11-test → 7.9.14-test

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.
@@ -53,6 +53,10 @@ const element = await testdriver.find(description, options)
53
53
  Two-phase zoom mode for better precision in crowded UIs with many similar elements. Disabled by default.
54
54
  </ParamField>
55
55
 
56
+ <ParamField path="verify" type="boolean" default={false}>
57
+ Enable AI verification of the located element. When `true`, a second AI call checks that the coordinates returned actually correspond to the requested element, catching hallucinated or incorrect positions. Disabled by default for lower latency.
58
+ </ParamField>
59
+
56
60
  <ParamField path="ai" type="object">
57
61
  AI sampling configuration for this find call (overrides global `ai` config from constructor).
58
62
 
package/docs/v7/find.mdx CHANGED
@@ -54,6 +54,10 @@ const element = await testdriver.find(description, options)
54
54
  Two-phase zoom mode for better precision in crowded UIs with many similar elements. Disabled by default.
55
55
  </ParamField>
56
56
 
57
+ <ParamField path="verify" type="boolean" default={false}>
58
+ Enable AI verification of the located element. When `true`, a second AI call checks that the coordinates returned actually correspond to the requested element, catching hallucinated or incorrect positions. Disabled by default for lower latency.
59
+ </ParamField>
60
+
57
61
  <ParamField path="ai" type="object">
58
62
  AI sampling configuration for this find call (overrides global `ai` config from constructor).
59
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.9.11-test",
3
+ "version": "7.9.14-test",
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",