@testdriverai/agent 7.8.0-canary.10

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.
Files changed (528) hide show
  1. package/.claude/settings.local.json +7 -0
  2. package/.env.example +4 -0
  3. package/.prettierignore +4 -0
  4. package/.prettierrc +1 -0
  5. package/CHANGELOG.md +953 -0
  6. package/README.md +81 -0
  7. package/agent/events.js +135 -0
  8. package/agent/index.js +2450 -0
  9. package/agent/interface.js +35 -0
  10. package/agent/lib/analytics.js +22 -0
  11. package/agent/lib/censorship.js +75 -0
  12. package/agent/lib/commander.js +246 -0
  13. package/agent/lib/commands.js +1684 -0
  14. package/agent/lib/config.js +60 -0
  15. package/agent/lib/generator.js +91 -0
  16. package/agent/lib/http.js +144 -0
  17. package/agent/lib/logger.js +56 -0
  18. package/agent/lib/outputs.js +29 -0
  19. package/agent/lib/parser.js +209 -0
  20. package/agent/lib/redraw.js +386 -0
  21. package/agent/lib/resources/cursor-2.png +0 -0
  22. package/agent/lib/sandbox.js +1104 -0
  23. package/agent/lib/sdk.js +633 -0
  24. package/agent/lib/session.js +25 -0
  25. package/agent/lib/source-mapper.js +342 -0
  26. package/agent/lib/subimage/index.js +77 -0
  27. package/agent/lib/subimage/opencv.js +69 -0
  28. package/agent/lib/system.js +204 -0
  29. package/agent/lib/theme.js +14 -0
  30. package/agent/lib/valid-version.js +21 -0
  31. package/agent/lib/validation.js +169 -0
  32. package/ai/.claude-plugin/plugin.json +9 -0
  33. package/ai/agents/testdriver.md +638 -0
  34. package/ai/skills/testdriver-ai/SKILL.md +204 -0
  35. package/ai/skills/testdriver-assert/SKILL.md +315 -0
  36. package/ai/skills/testdriver-aws-setup/SKILL.md +448 -0
  37. package/ai/skills/testdriver-cache/SKILL.md +221 -0
  38. package/ai/skills/testdriver-caching/SKILL.md +124 -0
  39. package/ai/skills/testdriver-captcha/SKILL.md +158 -0
  40. package/ai/skills/testdriver-ci-cd/SKILL.md +602 -0
  41. package/ai/skills/testdriver-click/SKILL.md +286 -0
  42. package/ai/skills/testdriver-client/SKILL.md +477 -0
  43. package/ai/skills/testdriver-cloud/SKILL.md +119 -0
  44. package/ai/skills/testdriver-customizing-devices/SKILL.md +319 -0
  45. package/ai/skills/testdriver-dashcam/SKILL.md +418 -0
  46. package/ai/skills/testdriver-debugging-with-screenshots/SKILL.md +401 -0
  47. package/ai/skills/testdriver-device-config/SKILL.md +317 -0
  48. package/ai/skills/testdriver-double-click/SKILL.md +102 -0
  49. package/ai/skills/testdriver-elements/SKILL.md +605 -0
  50. package/ai/skills/testdriver-enterprise/SKILL.md +114 -0
  51. package/ai/skills/testdriver-errors/SKILL.md +246 -0
  52. package/ai/skills/testdriver-events/SKILL.md +356 -0
  53. package/ai/skills/testdriver-examples/SKILL.md +7 -0
  54. package/ai/skills/testdriver-exec/SKILL.md +317 -0
  55. package/ai/skills/testdriver-find/SKILL.md +829 -0
  56. package/ai/skills/testdriver-focus-application/SKILL.md +293 -0
  57. package/ai/skills/testdriver-generating-tests/SKILL.md +36 -0
  58. package/ai/skills/testdriver-hover/SKILL.md +278 -0
  59. package/ai/skills/testdriver-locating-elements/SKILL.md +71 -0
  60. package/ai/skills/testdriver-making-assertions/SKILL.md +32 -0
  61. package/ai/skills/testdriver-mcp/SKILL.md +7 -0
  62. package/ai/skills/testdriver-mcp-workflow/SKILL.md +410 -0
  63. package/ai/skills/testdriver-mouse-down/SKILL.md +161 -0
  64. package/ai/skills/testdriver-mouse-up/SKILL.md +164 -0
  65. package/ai/skills/testdriver-parse/SKILL.md +236 -0
  66. package/ai/skills/testdriver-performing-actions/SKILL.md +54 -0
  67. package/ai/skills/testdriver-press-keys/SKILL.md +348 -0
  68. package/ai/skills/testdriver-provision/SKILL.md +331 -0
  69. package/ai/skills/testdriver-quickstart/SKILL.md +144 -0
  70. package/ai/skills/testdriver-redraw/SKILL.md +214 -0
  71. package/ai/skills/testdriver-reusable-code/SKILL.md +249 -0
  72. package/ai/skills/testdriver-right-click/SKILL.md +123 -0
  73. package/ai/skills/testdriver-running-tests/SKILL.md +185 -0
  74. package/ai/skills/testdriver-screenshot/SKILL.md +248 -0
  75. package/ai/skills/testdriver-screenshots/SKILL.md +184 -0
  76. package/ai/skills/testdriver-scroll/SKILL.md +335 -0
  77. package/ai/skills/testdriver-secrets/SKILL.md +115 -0
  78. package/ai/skills/testdriver-self-hosted/SKILL.md +65 -0
  79. package/ai/skills/testdriver-test-writer/SKILL.md +448 -0
  80. package/ai/skills/testdriver-testdriver/SKILL.md +628 -0
  81. package/ai/skills/testdriver-testdriver-mechanic/SKILL.md +165 -0
  82. package/ai/skills/testdriver-type/SKILL.md +357 -0
  83. package/ai/skills/testdriver-variables/SKILL.md +111 -0
  84. package/ai/skills/testdriver-wait/SKILL.md +50 -0
  85. package/ai/skills/testdriver-waiting-for-elements/SKILL.md +90 -0
  86. package/ai/skills/testdriver-what-is-testdriver/SKILL.md +54 -0
  87. package/bin/testdriverai.js +22 -0
  88. package/debugger/bg.png +0 -0
  89. package/debugger/icon.png +0 -0
  90. package/debugger/index.html +469 -0
  91. package/debugger/td.png +0 -0
  92. package/debugger/tray-buffered.png +0 -0
  93. package/debugger/tray.png +0 -0
  94. package/docs/GITHUB_COMMENTS.md +330 -0
  95. package/docs/GITHUB_COMMENTS_ANNOUNCEMENT.md +167 -0
  96. package/docs/QUICK-START-GITHUB-COMMENTS.md +84 -0
  97. package/docs/TEST-GITHUB-COMMENTS.md +129 -0
  98. package/docs/_data/examples-manifest.json +177 -0
  99. package/docs/_data/examples-manifest.schema.json +41 -0
  100. package/docs/_scripts/extract-example-urls.js +165 -0
  101. package/docs/_scripts/generate-examples.js +560 -0
  102. package/docs/_scripts/generate-skills.js +154 -0
  103. package/docs/_scripts/link-replacer.js +164 -0
  104. package/docs/_scripts/upload-docs-to-openai.js +284 -0
  105. package/docs/changelog.mdx +161 -0
  106. package/docs/claude-mcp-plugin.mdx +160 -0
  107. package/docs/docs.json +442 -0
  108. package/docs/github-integration-setup.md +266 -0
  109. package/docs/guide/best-practices-polling.mdx +174 -0
  110. package/docs/images/content/account/newprojectsettings.png +0 -0
  111. package/docs/images/content/account/projectpage.png +0 -0
  112. package/docs/images/content/account/projectreplays.png +0 -0
  113. package/docs/images/content/account/team-manage.png +0 -0
  114. package/docs/images/content/account/teampage.png +0 -0
  115. package/docs/images/content/extension/cursor.svg +1 -0
  116. package/docs/images/content/extension/vscode.svg +57 -0
  117. package/docs/images/content/extension/windsurf.svg +3 -0
  118. package/docs/images/content/parse/output.png +0 -0
  119. package/docs/images/content/self-hosted/launchtemplateid.png +0 -0
  120. package/docs/images/content/side-by-side.png +0 -0
  121. package/docs/images/content/vscode/ide-full.png +0 -0
  122. package/docs/images/content/vscode/running.png +0 -0
  123. package/docs/images/content/vscode/v7-chat.png +0 -0
  124. package/docs/images/content/vscode/v7-choose-agent.png +0 -0
  125. package/docs/images/content/vscode/v7-full.png +0 -0
  126. package/docs/images/content/vscode/v7-onboarding.png +0 -0
  127. package/docs/images/content/vscode/vscode-2-assert.png +0 -0
  128. package/docs/images/content/vscode/vscode-agent-preview.png +0 -0
  129. package/docs/images/content/vscode/vscode-copilot-ask.png +0 -0
  130. package/docs/images/content/vscode/vscode-file-creation.png +0 -0
  131. package/docs/images/content/vscode/vscode-install.png +0 -0
  132. package/docs/images/content/vscode/vscode-overview.png +0 -0
  133. package/docs/images/content/vscode/vscode-setup-walkthrough.png +0 -0
  134. package/docs/images/content/vscode/vscode-stopchat.png +0 -0
  135. package/docs/images/content/vscode/vscode-stoptest.png +0 -0
  136. package/docs/images/content/vscode/vscode-tdservice.png +0 -0
  137. package/docs/images/content/vscode/vscode-test-output.png +0 -0
  138. package/docs/images/content/vscode/vscode-testhistory.png +0 -0
  139. package/docs/images/content/vscode/vscode-testpane-runtests.png +0 -0
  140. package/docs/images/content/vscode/vscode-testpane.png +0 -0
  141. package/docs/images/template/dark.png +0 -0
  142. package/docs/images/template/icon.png +0 -0
  143. package/docs/images/template/light.png +0 -0
  144. package/docs/snippets/calendar-link.mdx +4 -0
  145. package/docs/snippets/gitignore-warning.mdx +7 -0
  146. package/docs/snippets/lifecycle-warning.mdx +6 -0
  147. package/docs/snippets/test-prereqs.mdx +12 -0
  148. package/docs/snippets/tests/assert-replay.mdx +7 -0
  149. package/docs/snippets/tests/assert-yaml.mdx +8 -0
  150. package/docs/snippets/tests/exec-js-replay.mdx +7 -0
  151. package/docs/snippets/tests/exec-js-yaml.mdx +32 -0
  152. package/docs/snippets/tests/exec-shell-replay.mdx +7 -0
  153. package/docs/snippets/tests/exec-shell-yaml.mdx +15 -0
  154. package/docs/snippets/tests/hover-image-replay.mdx +7 -0
  155. package/docs/snippets/tests/hover-image-yaml.mdx +17 -0
  156. package/docs/snippets/tests/hover-text-replay.mdx +7 -0
  157. package/docs/snippets/tests/hover-text-with-description-replay.mdx +7 -0
  158. package/docs/snippets/tests/hover-text-with-description-yaml.mdx +24 -0
  159. package/docs/snippets/tests/hover-text-yaml.mdx +14 -0
  160. package/docs/snippets/tests/match-image-replay.mdx +7 -0
  161. package/docs/snippets/tests/match-image-yaml.mdx +17 -0
  162. package/docs/snippets/tests/press-keys-replay.mdx +7 -0
  163. package/docs/snippets/tests/press-keys-yaml.mdx +36 -0
  164. package/docs/snippets/tests/remember-replay.mdx +7 -0
  165. package/docs/snippets/tests/remember-yaml.mdx +28 -0
  166. package/docs/snippets/tests/scroll-replay.mdx +7 -0
  167. package/docs/snippets/tests/scroll-until-image-replay.mdx +7 -0
  168. package/docs/snippets/tests/scroll-until-image-yaml.mdx +14 -0
  169. package/docs/snippets/tests/scroll-until-text-replay.mdx +7 -0
  170. package/docs/snippets/tests/scroll-until-text-yaml.mdx +17 -0
  171. package/docs/snippets/tests/scroll-yaml.mdx +30 -0
  172. package/docs/snippets/tests/type-repeated-replay.mdx +7 -0
  173. package/docs/snippets/tests/type-repeated-yaml.mdx +22 -0
  174. package/docs/snippets/tests/type-replay.mdx +7 -0
  175. package/docs/snippets/tests/type-yaml.mdx +28 -0
  176. package/docs/snippets/tests/wait-for-image-replay.mdx +7 -0
  177. package/docs/snippets/tests/wait-for-image-yaml.mdx +18 -0
  178. package/docs/snippets/tests/wait-for-text-replay.mdx +7 -0
  179. package/docs/snippets/tests/wait-for-text-yaml.mdx +18 -0
  180. package/docs/snippets/tests/wait-replay.mdx +7 -0
  181. package/docs/snippets/tests/wait-yaml.mdx +13 -0
  182. package/docs/styles.css +65 -0
  183. package/docs/v6/account/dashboard.mdx +16 -0
  184. package/docs/v6/account/enterprise.mdx +110 -0
  185. package/docs/v6/account/pricing.mdx +33 -0
  186. package/docs/v6/account/projects.mdx +33 -0
  187. package/docs/v6/account/team.mdx +35 -0
  188. package/docs/v6/action/ami.mdx +109 -0
  189. package/docs/v6/action/performance.mdx +105 -0
  190. package/docs/v6/action/secrets.mdx +93 -0
  191. package/docs/v6/apps/chrome-extensions.mdx +48 -0
  192. package/docs/v6/apps/desktop-apps.mdx +93 -0
  193. package/docs/v6/apps/mobile-apps.mdx +26 -0
  194. package/docs/v6/apps/static-websites.mdx +54 -0
  195. package/docs/v6/apps/tauri-apps.mdx +361 -0
  196. package/docs/v6/bugs/jira.mdx +232 -0
  197. package/docs/v6/cli/overview.mdx +66 -0
  198. package/docs/v6/commands/assert.mdx +45 -0
  199. package/docs/v6/commands/exec.mdx +276 -0
  200. package/docs/v6/commands/focus-application.mdx +44 -0
  201. package/docs/v6/commands/hover-image.mdx +69 -0
  202. package/docs/v6/commands/hover-text.mdx +47 -0
  203. package/docs/v6/commands/if.mdx +53 -0
  204. package/docs/v6/commands/match-image.mdx +67 -0
  205. package/docs/v6/commands/press-keys.mdx +87 -0
  206. package/docs/v6/commands/remember.mdx +49 -0
  207. package/docs/v6/commands/run.mdx +44 -0
  208. package/docs/v6/commands/scroll-until-image.mdx +66 -0
  209. package/docs/v6/commands/scroll-until-text.mdx +60 -0
  210. package/docs/v6/commands/scroll.mdx +69 -0
  211. package/docs/v6/commands/type.mdx +45 -0
  212. package/docs/v6/commands/wait-for-image.mdx +54 -0
  213. package/docs/v6/commands/wait-for-text.mdx +48 -0
  214. package/docs/v6/commands/wait.mdx +45 -0
  215. package/docs/v6/exporting/junit.mdx +218 -0
  216. package/docs/v6/exporting/playwright.mdx +197 -0
  217. package/docs/v6/features/auto-healing.mdx +144 -0
  218. package/docs/v6/features/generation.mdx +116 -0
  219. package/docs/v6/features/parallel-testing.mdx +151 -0
  220. package/docs/v6/features/reusable-snippets.mdx +131 -0
  221. package/docs/v6/features/selectorless.mdx +80 -0
  222. package/docs/v6/features/visual-assertions.mdx +139 -0
  223. package/docs/v6/getting-started/ci.mdx +146 -0
  224. package/docs/v6/getting-started/cli.mdx +91 -0
  225. package/docs/v6/getting-started/editing.mdx +100 -0
  226. package/docs/v6/getting-started/playwright.mdx +342 -0
  227. package/docs/v6/getting-started/running.mdx +48 -0
  228. package/docs/v6/getting-started/self-hosting.mdx +408 -0
  229. package/docs/v6/getting-started/vscode.mdx +88 -0
  230. package/docs/v6/guide/assertions.mdx +189 -0
  231. package/docs/v6/guide/authentication.mdx +136 -0
  232. package/docs/v6/guide/code.mdx +65 -0
  233. package/docs/v6/guide/dashcam.mdx +118 -0
  234. package/docs/v6/guide/environment-variables.mdx +26 -0
  235. package/docs/v6/guide/lifecycle.mdx +242 -0
  236. package/docs/v6/guide/locating.mdx +141 -0
  237. package/docs/v6/guide/protips.mdx +43 -0
  238. package/docs/v6/guide/variables.mdx +143 -0
  239. package/docs/v6/guide/waiting.mdx +130 -0
  240. package/docs/v6/importing/csv.mdx +196 -0
  241. package/docs/v6/importing/gherkin.mdx +143 -0
  242. package/docs/v6/importing/jira.mdx +164 -0
  243. package/docs/v6/importing/testrail.mdx +162 -0
  244. package/docs/v6/integrations/electron.mdx +146 -0
  245. package/docs/v6/integrations/netlify.mdx +100 -0
  246. package/docs/v6/integrations/vercel.mdx +125 -0
  247. package/docs/v6/interactive/explore.mdx +99 -0
  248. package/docs/v6/interactive/run.mdx +52 -0
  249. package/docs/v6/interactive/save.mdx +63 -0
  250. package/docs/v6/overview/comparison.mdx +101 -0
  251. package/docs/v6/overview/faq.mdx +162 -0
  252. package/docs/v6/overview/performance.mdx +52 -0
  253. package/docs/v6/overview/quickstart.mdx +137 -0
  254. package/docs/v6/overview/what-is-testdriver.mdx +85 -0
  255. package/docs/v6/scenarios/ai-chatbot.mdx +28 -0
  256. package/docs/v6/scenarios/cookie-banner.mdx +32 -0
  257. package/docs/v6/scenarios/file-upload.mdx +33 -0
  258. package/docs/v6/scenarios/form-filling.mdx +32 -0
  259. package/docs/v6/scenarios/log-in.mdx +75 -0
  260. package/docs/v6/scenarios/pdf-generation.mdx +25 -0
  261. package/docs/v6/scenarios/spell-check.mdx +22 -0
  262. package/docs/v6/security/action.mdx +84 -0
  263. package/docs/v6/security/agent.mdx +73 -0
  264. package/docs/v6/security/platform.mdx +77 -0
  265. package/docs/v6/tutorials/advanced-test.mdx +81 -0
  266. package/docs/v6/tutorials/basic-test.mdx +45 -0
  267. package/docs/v7/_drafts/agents.mdx +843 -0
  268. package/docs/v7/_drafts/architecture.mdx +399 -0
  269. package/docs/v7/_drafts/auto-cache-key.mdx +167 -0
  270. package/docs/v7/_drafts/awesome-logs-quick-ref.mdx +100 -0
  271. package/docs/v7/_drafts/best-practices.mdx +486 -0
  272. package/docs/v7/_drafts/caching-ai.mdx +215 -0
  273. package/docs/v7/_drafts/caching-selectors.mdx +424 -0
  274. package/docs/v7/_drafts/caching.mdx +366 -0
  275. package/docs/v7/_drafts/cli-to-sdk-migration.mdx +425 -0
  276. package/docs/v7/_drafts/commands/assert.mdx +45 -0
  277. package/docs/v7/_drafts/commands/exec.mdx +276 -0
  278. package/docs/v7/_drafts/commands/focus-application.mdx +44 -0
  279. package/docs/v7/_drafts/commands/hover-image.mdx +69 -0
  280. package/docs/v7/_drafts/commands/hover-text.mdx +47 -0
  281. package/docs/v7/_drafts/commands/if.mdx +53 -0
  282. package/docs/v7/_drafts/commands/match-image.mdx +67 -0
  283. package/docs/v7/_drafts/commands/press-keys.mdx +87 -0
  284. package/docs/v7/_drafts/commands/remember.mdx +49 -0
  285. package/docs/v7/_drafts/commands/run.mdx +44 -0
  286. package/docs/v7/_drafts/commands/scroll-until-image.mdx +66 -0
  287. package/docs/v7/_drafts/commands/scroll-until-text.mdx +60 -0
  288. package/docs/v7/_drafts/commands/scroll.mdx +69 -0
  289. package/docs/v7/_drafts/commands/type.mdx +45 -0
  290. package/docs/v7/_drafts/commands/wait-for-image.mdx +54 -0
  291. package/docs/v7/_drafts/commands/wait-for-text.mdx +48 -0
  292. package/docs/v7/_drafts/commands/wait.mdx +45 -0
  293. package/docs/v7/_drafts/configuration.mdx +378 -0
  294. package/docs/v7/_drafts/contributing.mdx +174 -0
  295. package/docs/v7/_drafts/core.mdx +458 -0
  296. package/docs/v7/_drafts/dashcam-title-feature.mdx +89 -0
  297. package/docs/v7/_drafts/debugging.mdx +349 -0
  298. package/docs/v7/_drafts/error-handling.mdx +501 -0
  299. package/docs/v7/_drafts/faq.mdx +393 -0
  300. package/docs/v7/_drafts/hooks.mdx +360 -0
  301. package/docs/v7/_drafts/init-command.mdx +95 -0
  302. package/docs/v7/_drafts/installation.mdx +420 -0
  303. package/docs/v7/_drafts/migration.mdx +562 -0
  304. package/docs/v7/_drafts/observable.mdx +604 -0
  305. package/docs/v7/_drafts/playwright.mdx +342 -0
  306. package/docs/v7/_drafts/plugin-migration.mdx +220 -0
  307. package/docs/v7/_drafts/powerful.mdx +419 -0
  308. package/docs/v7/_drafts/presets.mdx +210 -0
  309. package/docs/v7/_drafts/progressive-disclosure.mdx +230 -0
  310. package/docs/v7/_drafts/prompt-cache.mdx +200 -0
  311. package/docs/v7/_drafts/provision.mdx +390 -0
  312. package/docs/v7/_drafts/quick-start-test-recording.mdx +214 -0
  313. package/docs/v7/_drafts/readme.mdx +135 -0
  314. package/docs/v7/_drafts/reports.mdx +414 -0
  315. package/docs/v7/_drafts/scalable.mdx +763 -0
  316. package/docs/v7/_drafts/screenshot.mdx +155 -0
  317. package/docs/v7/_drafts/sdk-awesome-logs.mdx +468 -0
  318. package/docs/v7/_drafts/sdk-browser-rendering.mdx +167 -0
  319. package/docs/v7/_drafts/sdk-migration.mdx +474 -0
  320. package/docs/v7/_drafts/sdk-v7-complete.mdx +345 -0
  321. package/docs/v7/_drafts/self-hosting.mdx +369 -0
  322. package/docs/v7/_drafts/test-recording.mdx +382 -0
  323. package/docs/v7/_drafts/troubleshooting.mdx +526 -0
  324. package/docs/v7/_drafts/vitest-plugin.mdx +477 -0
  325. package/docs/v7/_drafts/vitest.mdx +535 -0
  326. package/docs/v7/_drafts/writing-tests.mdx +25 -0
  327. package/docs/v7/ai.mdx +205 -0
  328. package/docs/v7/assert.mdx +316 -0
  329. package/docs/v7/aws-setup.mdx +449 -0
  330. package/docs/v7/cache.mdx +223 -0
  331. package/docs/v7/caching.mdx +128 -0
  332. package/docs/v7/captcha.mdx +159 -0
  333. package/docs/v7/ci-cd.mdx +603 -0
  334. package/docs/v7/click.mdx +287 -0
  335. package/docs/v7/client.mdx +478 -0
  336. package/docs/v7/copilot/auto-healing.mdx +265 -0
  337. package/docs/v7/copilot/creating-tests.mdx +156 -0
  338. package/docs/v7/copilot/github.mdx +143 -0
  339. package/docs/v7/copilot/running-tests.mdx +149 -0
  340. package/docs/v7/copilot/setup.mdx +143 -0
  341. package/docs/v7/customizing-devices.mdx +319 -0
  342. package/docs/v7/dashcam.mdx +419 -0
  343. package/docs/v7/debugging-with-screenshots.mdx +402 -0
  344. package/docs/v7/device-config.mdx +317 -0
  345. package/docs/v7/double-click.mdx +102 -0
  346. package/docs/v7/elements.mdx +606 -0
  347. package/docs/v7/enterprise.mdx +9 -0
  348. package/docs/v7/errors.mdx +248 -0
  349. package/docs/v7/events.mdx +358 -0
  350. package/docs/v7/examples/ai.mdx +72 -0
  351. package/docs/v7/examples/assert.mdx +72 -0
  352. package/docs/v7/examples/captcha-api.mdx +92 -0
  353. package/docs/v7/examples/chrome-extension.mdx +132 -0
  354. package/docs/v7/examples/drag-and-drop.mdx +100 -0
  355. package/docs/v7/examples/element-not-found.mdx +67 -0
  356. package/docs/v7/examples/exec-output.mdx +85 -0
  357. package/docs/v7/examples/exec-pwsh.mdx +83 -0
  358. package/docs/v7/examples/focus-window.mdx +62 -0
  359. package/docs/v7/examples/hover-image.mdx +94 -0
  360. package/docs/v7/examples/hover-text.mdx +69 -0
  361. package/docs/v7/examples/installer.mdx +91 -0
  362. package/docs/v7/examples/launch-vscode-linux.mdx +101 -0
  363. package/docs/v7/examples/match-image.mdx +96 -0
  364. package/docs/v7/examples/press-keys.mdx +92 -0
  365. package/docs/v7/examples/scroll-keyboard.mdx +79 -0
  366. package/docs/v7/examples/scroll-until-image.mdx +81 -0
  367. package/docs/v7/examples/scroll-until-text.mdx +109 -0
  368. package/docs/v7/examples/scroll.mdx +81 -0
  369. package/docs/v7/examples/type.mdx +92 -0
  370. package/docs/v7/examples/windows-installer.mdx +89 -0
  371. package/docs/v7/exec.mdx +318 -0
  372. package/docs/v7/find.mdx +830 -0
  373. package/docs/v7/focus-application.mdx +294 -0
  374. package/docs/v7/generating-tests.mdx +36 -0
  375. package/docs/v7/hosted.mdx +158 -0
  376. package/docs/v7/hover.mdx +279 -0
  377. package/docs/v7/locating-elements.mdx +71 -0
  378. package/docs/v7/making-assertions.mdx +32 -0
  379. package/docs/v7/mcp.mdx +9 -0
  380. package/docs/v7/mouse-down.mdx +161 -0
  381. package/docs/v7/mouse-up.mdx +164 -0
  382. package/docs/v7/parse.mdx +237 -0
  383. package/docs/v7/performing-actions.mdx +54 -0
  384. package/docs/v7/press-keys.mdx +349 -0
  385. package/docs/v7/provision.mdx +333 -0
  386. package/docs/v7/quickstart.mdx +173 -0
  387. package/docs/v7/redraw.mdx +216 -0
  388. package/docs/v7/reusable-code.mdx +249 -0
  389. package/docs/v7/right-click.mdx +123 -0
  390. package/docs/v7/running-tests.mdx +185 -0
  391. package/docs/v7/screenshot.mdx +249 -0
  392. package/docs/v7/screenshots.mdx +186 -0
  393. package/docs/v7/scroll.mdx +336 -0
  394. package/docs/v7/secrets.mdx +115 -0
  395. package/docs/v7/self-hosted.mdx +149 -0
  396. package/docs/v7/type.mdx +358 -0
  397. package/docs/v7/variables.mdx +111 -0
  398. package/docs/v7/wait.mdx +52 -0
  399. package/docs/v7/waiting-for-elements.mdx +90 -0
  400. package/docs/v7/what-is-testdriver.mdx +54 -0
  401. package/eslint.config.js +67 -0
  402. package/examples/ai.test.mjs +31 -0
  403. package/examples/assert.test.mjs +47 -0
  404. package/examples/chrome-extension.test.mjs +97 -0
  405. package/examples/config.mjs +5 -0
  406. package/examples/element-not-found.test.mjs +27 -0
  407. package/examples/exec-output.test.mjs +60 -0
  408. package/examples/exec-pwsh.test.mjs +58 -0
  409. package/examples/findall-coffee-icons.test.mjs +42 -0
  410. package/examples/focus-window.test.mjs +37 -0
  411. package/examples/formatted-logging.test.mjs +27 -0
  412. package/examples/hover-image.test.mjs +53 -0
  413. package/examples/hover-text-with-description.test.mjs +57 -0
  414. package/examples/hover-text.test.mjs +28 -0
  415. package/examples/installer.test.mjs +50 -0
  416. package/examples/launch-vscode-linux.test.mjs +55 -0
  417. package/examples/match-image.test.mjs +55 -0
  418. package/examples/parse.test.mjs +19 -0
  419. package/examples/press-keys.test.mjs +44 -0
  420. package/examples/prompt.test.mjs +34 -0
  421. package/examples/scroll-keyboard.test.mjs +38 -0
  422. package/examples/scroll-until-image.test.mjs +40 -0
  423. package/examples/scroll.test.mjs +42 -0
  424. package/examples/type.test.mjs +46 -0
  425. package/examples/windows-installer.test.mjs +54 -0
  426. package/index.js +2 -0
  427. package/interfaces/cli/commands/init.js +438 -0
  428. package/interfaces/cli/commands/setup.js +382 -0
  429. package/interfaces/cli/lib/base.js +285 -0
  430. package/interfaces/cli.js +20 -0
  431. package/interfaces/junit-reporter.js +290 -0
  432. package/interfaces/logger.js +388 -0
  433. package/interfaces/readline.js +234 -0
  434. package/interfaces/shared-test-state.mjs +64 -0
  435. package/interfaces/vitest-plugin.d.ts +115 -0
  436. package/interfaces/vitest-plugin.mjs +1698 -0
  437. package/lib/captcha/solver.js +358 -0
  438. package/lib/core/Dashcam.js +533 -0
  439. package/lib/core/index.d.ts +172 -0
  440. package/lib/core/index.js +12 -0
  441. package/lib/environments.json +18 -0
  442. package/lib/github-comment-formatter.js +263 -0
  443. package/lib/github-comment.mjs +452 -0
  444. package/lib/init-project.js +575 -0
  445. package/lib/presets/index.mjs +331 -0
  446. package/lib/resolve-channel.js +46 -0
  447. package/lib/sentry.js +417 -0
  448. package/lib/vitest/hooks.d.ts +57 -0
  449. package/lib/vitest/hooks.mjs +674 -0
  450. package/lib/vitest/setup-aws.mjs +247 -0
  451. package/lib/vitest/setup-self-hosted.mjs +151 -0
  452. package/lib/vitest/setup.mjs +46 -0
  453. package/manual/captcha-api.test.mjs +51 -0
  454. package/manual/drag-and-drop.test.mjs +59 -0
  455. package/manual/flake-diffthreshold-001.test.mjs +9 -0
  456. package/manual/flake-diffthreshold-01.test.mjs +9 -0
  457. package/manual/flake-diffthreshold-05.test.mjs +9 -0
  458. package/manual/flake-noredraw-cache.test.mjs +9 -0
  459. package/manual/flake-noredraw-nocache.test.mjs +9 -0
  460. package/manual/flake-redraw-cache.test.mjs +9 -0
  461. package/manual/flake-redraw-nocache.test.mjs +9 -0
  462. package/manual/flake-rocket-match.test.mjs +30 -0
  463. package/manual/flake-shared.mjs +51 -0
  464. package/manual/no-provision.test.mjs +31 -0
  465. package/manual/packer-hover-image.test.mjs +176 -0
  466. package/manual/scroll-until-text.test.mjs +68 -0
  467. package/manual/test-init-command.js +223 -0
  468. package/mcp-server/README.md +322 -0
  469. package/mcp-server/dist/codegen.d.ts +9 -0
  470. package/mcp-server/dist/codegen.js +165 -0
  471. package/mcp-server/dist/mcp-app.html +114 -0
  472. package/mcp-server/dist/package.json +1 -0
  473. package/mcp-server/dist/provision-types.d.ts +290 -0
  474. package/mcp-server/dist/provision-types.js +174 -0
  475. package/mcp-server/dist/server.d.ts +6 -0
  476. package/mcp-server/dist/server.mjs +1925 -0
  477. package/mcp-server/dist/session.d.ts +85 -0
  478. package/mcp-server/dist/session.js +152 -0
  479. package/mcp-server/mcp-app.html +28 -0
  480. package/mcp-server/mcp-config.example.json +19 -0
  481. package/mcp-server/package-lock.json +4027 -0
  482. package/mcp-server/package.json +31 -0
  483. package/mcp-server/src/codegen.ts +189 -0
  484. package/mcp-server/src/mcp-app.css +360 -0
  485. package/mcp-server/src/mcp-app.ts +547 -0
  486. package/mcp-server/src/provision-types.ts +209 -0
  487. package/mcp-server/src/server.ts +2391 -0
  488. package/mcp-server/src/session.ts +194 -0
  489. package/mcp-server/tsconfig.json +16 -0
  490. package/mcp-server/vite.config.ts +23 -0
  491. package/package.json +158 -0
  492. package/schema.json +1046 -0
  493. package/scripts/generate-skills.js +94 -0
  494. package/sdk-log-formatter.js +1157 -0
  495. package/sdk.d.ts +1486 -0
  496. package/sdk.js +4336 -0
  497. package/setup/aws/cloudformation.yaml +463 -0
  498. package/setup/aws/disable-defender.sh +42 -0
  499. package/setup/aws/install-dev-runner.sh +79 -0
  500. package/setup/aws/spawn-runner.sh +289 -0
  501. package/test/captcha-solver.test.mjs +152 -0
  502. package/test/chrome-remote-debugging.test.mjs +66 -0
  503. package/test/duckduckgo/experiment.test.mjs +28 -0
  504. package/test/duckduckgo/setup.test.mjs +29 -0
  505. package/test/manual/debug-locate-response.js +82 -0
  506. package/test/manual/reconnect-provision.test.mjs +49 -0
  507. package/test/manual/test-console-logs.test.mjs +42 -0
  508. package/test/manual/test-find-api.js +73 -0
  509. package/test/manual/test-init.sh +54 -0
  510. package/test/manual/test-prompt-cache.js +97 -0
  511. package/test/manual/test-provision-auth.mjs +22 -0
  512. package/test/manual/test-sandbox-render.js +29 -0
  513. package/test/manual/test-sdk-methods.js +15 -0
  514. package/test/manual/test-sdk-refactor.js +53 -0
  515. package/test/manual/test-stack-trace.mjs +57 -0
  516. package/test/manual/verify-element-api.js +89 -0
  517. package/test/manual/verify-types.js +0 -0
  518. package/test/manual-unawaited-promise.test.mjs +31 -0
  519. package/vitest.config.mjs +58 -0
  520. package/vitest.runner.config.mjs +33 -0
  521. package/vscode-extension/.vscodeignore +12 -0
  522. package/vscode-extension/README.md +94 -0
  523. package/vscode-extension/media/icon.png +0 -0
  524. package/vscode-extension/package-lock.json +4126 -0
  525. package/vscode-extension/package.json +86 -0
  526. package/vscode-extension/src/extension.ts +829 -0
  527. package/vscode-extension/testdriverai-0.1.0.vsix +0 -0
  528. package/vscode-extension/tsconfig.json +16 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,953 @@
1
+ ## 7.8.0-test.7 (2026-03-13)
2
+
3
+ 🔧 Maintenance
4
+
5
+ - Fix version bump syntax in release workflow [f3ac61dc]
6
+
7
+ ## 7.8.0-test.6 (2026-03-13)
8
+
9
+ 🔧 Maintenance
10
+
11
+ - Fix changelog generation in release workflow (04a789ec)
12
+
13
+ ## 7.8.0-test.5 (2026-03-13)
14
+
15
+ 🔧 Maintenance
16
+
17
+ - Update deployment configuration to use dashes instead of dots in environment naming (baca4d32)
18
+
19
+ ## 7.8.0-test.4 (2026-03-13)
20
+
21
+ ## 📝 Documentation
22
+
23
+ - Update and streamline skill documentation for captcha, exec, and quickstart features [SDK] (86d90bbf)
24
+ - Remove outdated Moby integration references from documentation [SDK] (08fa8e18)
25
+
26
+ ## 7.8.0-test.3 (2026-03-13)
27
+
28
+ ## ✨ Features
29
+
30
+ - Add comprehensive find() cache permutation integration tests to improve test coverage and reliability [API] (6a957f69)
31
+ - Add changelog documentation to SDK package [SDK] (6a957f69)
32
+
33
+ ## 🐛 Bug Fixes
34
+
35
+ - Fix dashcam URL parsing issues that could cause recording problems [SDK] (6a957f69)
36
+
37
+ ## 🔧 Maintenance
38
+
39
+ - Update subdomain routing configuration for improved service connectivity [API] (6a957f69)
40
+ - Streamline GitHub Actions workflows by consolidating publish processes [CI] (6a957f69)
41
+ - Update environment configuration for test, dev, and canary deployments [Infrastructure] (6a957f69)
42
+ - Improve development container and VS Code task configurations [Development] (6a957f69)
43
+
44
+ ## 7.8.0-test.2 (2026-03-13)
45
+
46
+ ## ✨ Features
47
+
48
+ - Implement automatic cleanup of unused Ably channels to improve resource management [API] (df6181de)
49
+
50
+ ## 🔧 Maintenance
51
+
52
+ - Streamline CI/CD workflows with improved test organization and environment configuration [SDK] (df6181de)
53
+ - Enhance development environment setup with better environment variable management (df6181de)
54
+ - Improve connection handling and URL resolution for better reliability [SDK] (df6181de)
55
+
56
+ ## 7.6.0-test.8 (2026-03-13)
57
+
58
+ 🔧 Maintenance
59
+
60
+ - Improve release workflow automation for more reliable package promotions (358bb702)
61
+
62
+ ## 7.6.0-test.7 (2026-03-13)
63
+
64
+ ## 🔧 Maintenance
65
+
66
+ - Eliminate CI race conditions in promotion pipeline and streamline release workflows [CI] (9d83f886)
67
+ - Improve VNC URL display in CI environments [API] (9d83f886)
68
+ - Add dynamic channel resolution system for SDK configuration [SDK] (9d83f886)
69
+ - Update MCP server dependencies and enhance error handling [SDK] (9d83f886)
70
+
71
+ ## 7.6.0-test.6 (2026-03-13)
72
+
73
+ ## 🔧 Maintenance
74
+
75
+ - Improve CI/CD pipeline reliability by eliminating race conditions in release promotion workflows [c21f708d]
76
+ - Fix VNC URL display in continuous integration environment [API] [c21f708d]
77
+
78
+ ## 7.6.0-test.5 (2026-03-12)
79
+
80
+ ## 🔧 Maintenance
81
+
82
+ - Update SDK channel configuration [SDK] (274fff79)
83
+
84
+ ## 7.6.0-test.4 (2026-03-12)
85
+
86
+ ## 🔧 Maintenance
87
+
88
+ - Improve release workflow and deployment configuration [SDK] (eeea7649)
89
+ - Add enhanced web analytics tracking for better user insights [SDK] (eeea7649)
90
+
91
+ ## 7.6.0-test.3 (2026-03-12)
92
+
93
+ ## 🔧 Maintenance
94
+
95
+ - Improve release workflow automation and package promotion process [bb6be95]
96
+
97
+ ## 7.6.0-test.2 (2026-03-12)
98
+
99
+ ## 🔧 Maintenance
100
+
101
+ - Add automated publishing workflows for stable and canary releases [SDK] (2972b3be)
102
+ - Update CI workflows to improve testing efficiency and reliability [SDK] (2972b3be)
103
+
104
+ ## 7.6.0-test.1 (2026-03-12)
105
+
106
+ 🔧 Maintenance
107
+
108
+ - Improve CI/CD workflow reliability and testing coverage [SDK] (eb86a515)
109
+ - Update MCP server implementation for better stability [SDK] (eb86a515)
110
+
111
+ 📝 Documentation
112
+
113
+ - Add new visual documentation for content parsing functionality [SDK] (eb86a515)
114
+
115
+ ## 7.6.0-test.0 (2026-03-12)
116
+
117
+ ## ✨ Features
118
+
119
+ - Add stable/canary deployment channels with separate environments for production and development branches [API] (64542a8d)
120
+ - Add /version API endpoint returning deployment channel information [API] (64542a8d)
121
+ - Implement user limits and team member invitation controls [API] (6381290a)
122
+ - Add comprehensive GitHub Copilot skills and agent documentation for AI-assisted test development [SDK] (5ff15796)
123
+ - Add testimonials section with customer logos and quotes to marketing site [Web] (6381290a)
124
+ - Add contact and demo pages to marketing site [Web] (6381290a)
125
+ - Improve test environment management with better configuration and deployment workflows [Runner] (5c96e056)
126
+
127
+ ## 🐛 Bug Fixes
128
+
129
+ - Fix environment configuration and Tailscale connectivity issues [Runner] (5c96e056)
130
+ - Resolve Redis URL configuration problems across environments [API] (eca334be)
131
+ - Fix Vite API endpoint configuration for proper environment targeting [Web] (bf7fdf54)
132
+
133
+ ## 🔧 Maintenance
134
+
135
+ - Update pricing configuration and plans structure [API] (6381290a)
136
+ - Improve deployment workflows with promotion pipelines between test, canary, and stable branches [CI/CD] (1994d769)
137
+ - Add toast notification system for better user feedback [Web] (multiple commits)
138
+ - Rename TestAnalytics to TestMetrics for clarity [Web] (multiple commits)
139
+ - Remove outdated marketing articles and legal pages [Web] (6381290a)
140
+ - Update terms of service with new date [Web] (6381290a)
141
+
142
+ ## 7.5.25 (2026-03-09)
143
+
144
+ ## 🐛 Bug Fixes
145
+
146
+ - Fix runner restart functionality to ensure proper VM recovery after interruptions [Runner] (47173fa5)
147
+
148
+ ## 7.5.24 (2026-03-09)
149
+
150
+ ## ✨ Features
151
+
152
+ - Disable automatic runner version updates [API] (f59d8209)
153
+
154
+ ## 7.5.23 (2026-03-09)
155
+
156
+ 📝 **Documentation**
157
+
158
+ - Add comprehensive marketing content including 1,100+ testing articles, blog posts, changelog entries, and tool documentation [Marketing] (07a801b6)
159
+ - Add legal documentation including privacy policy and terms of service [Marketing] (07a801b6)
160
+ - Add migration script for importing content from external sources [Marketing] (07a801b6)
161
+
162
+ 🔧 **Maintenance**
163
+
164
+ - Update AMI build configuration for runner infrastructure [Runner] (07a801b6)
165
+ - Update Vite configuration for marketing site build process [Marketing] (07a801b6)
166
+ - Minor footer and hero component updates [Marketing] (07a801b6)
167
+
168
+ ## 7.5.22 (2026-03-09)
169
+
170
+ ## ✨ Features
171
+
172
+ - Add markdown-to-HTML rendering for articles, blog posts, legal pages, and changelog on the marketing website [Web] (1d7f2248)
173
+
174
+ ## 7.5.21 (2026-03-09)
175
+
176
+ ✨ **Features**
177
+ - Redesigned homepage with improved navigation and user experience [Web] (8d150c36)
178
+ - Added comprehensive examples showcase to help users get started [Web] (8d150c36)
179
+
180
+ 🐛 **Bug Fixes**
181
+ - Fixed Stripe checkout pricing issues [Web] (8d150c36)
182
+ - Resolved witness functionality issues [Web] (8d150c36)
183
+
184
+ ## 7.5.20 (2026-03-09)
185
+
186
+ ## 🔧 Maintenance
187
+
188
+ - Update instance autoscaling parameters for improved resource management [Runner] (c5345356)
189
+
190
+ ## 7.5.19 (2026-03-09)
191
+
192
+ ## ✨ Features
193
+
194
+ - Enhanced element location debugging capabilities with improved cache hit tracking [API]
195
+ - Added comprehensive debugging support across multiple components for better troubleshooting [Web, API, Runner] (5564017d)
196
+
197
+ ## 🔧 Maintenance
198
+
199
+ - Improved element location performance and reliability through optimized caching mechanisms [API] (5564017d)
200
+ - Streamlined automation workflow execution for better efficiency [Runner] (5564017d)
201
+ - Updated CI/CD workflows for enhanced release and testing processes [GitHub Actions] (5564017d)
202
+
203
+ ## 7.5.18 (2026-03-09)
204
+
205
+ ## 🔧 Maintenance
206
+
207
+ - Optimize monitoring performance by reducing transaction sampling rate [Image Worker] (adb2a35d)
208
+
209
+ ## 7.5.17 (2026-03-07)
210
+
211
+ ## ✨ Features
212
+ - Enhanced marketing website with new "How It Works" section and improved visual components (161c1c7b)
213
+ - Added new brand assets and workflow illustrations for better user onboarding (161c1c7b)
214
+
215
+ ## 🐛 Bug Fixes
216
+ - Fixed Stripe checkout pricing and authentication issues [API] (161c1c7b)
217
+ - Resolved potential witness functionality issues [SDK] (161c1c7b)
218
+
219
+ ## 🔧 Maintenance
220
+ - Updated SDK documentation examples with improved formatting and generation scripts [SDK] (161c1c7b)
221
+ - Enhanced sandbox authentication and SDK functionality [SDK] (161c1c7b)
222
+ - Improved development environment configuration and tooling (161c1c7b)
223
+
224
+ ## 7.5.16 (2026-03-07)
225
+
226
+ ## ✨ Features
227
+
228
+ - Updated pricing structure and checkout flow for improved billing experience [API] (7821df39)
229
+
230
+ ## 🐛 Bug Fixes
231
+
232
+ - Fixed Stripe integration issues affecting payment processing [API] (7821df39)
233
+
234
+ ## 7.5.15 (2026-03-07)
235
+
236
+ ## 🐛 Bug Fixes
237
+
238
+ - Fix Stripe checkout session creation and update pricing display components [API] (57ece2a5)
239
+
240
+ ## 7.5.14 (2026-03-06)
241
+
242
+ ## 🔧 Maintenance
243
+
244
+ - Update brand assets and marketing materials with new logos, icons, and product screenshots (dbaf002e)
245
+ - Update API endpoint configuration for Stripe payment processing [API] (dbaf002e)
246
+ - Update default project initialization settings [SDK] (dbaf002e)
247
+
248
+ ## 7.5.13 (2026-03-06)
249
+
250
+ ## ✨ Features
251
+
252
+ - Add new marketing website with comprehensive landing pages, pricing, features, and documentation sections [Marketing] (a1d567fe)
253
+
254
+ ## 🔧 Maintenance
255
+
256
+ - Update API server location configuration across all components [API] (a1d567fe)
257
+ - Upgrade runner AMI and improve deployment automation [Runner] (a1d567fe)
258
+ - Add automated testing for runner auto-upgrade functionality [Runner] (a1d567fe)
259
+ - Update Windows CI workflow configuration [CI] (a1d567fe)
260
+
261
+ ## 7.5.12 (2026-03-06)
262
+
263
+ ## 🔧 Maintenance
264
+
265
+ - Update infrastructure configuration and improve CI/CD pipeline reliability [API, SDK] (42f8bd3c)
266
+
267
+ ## 7.5.11 (2026-03-06)
268
+
269
+ ## 🔧 Maintenance
270
+
271
+ - Consolidate GitHub workflows by removing nested workflow files and centralizing VS Code build and test processes (79701b5f)
272
+ - Remove extensive GitHub Copilot skills documentation from SDK package to streamline repository structure (ea19cf96)
273
+ - Update development container configuration with improved VS Code extensions (3c8ebe5e)
274
+ - Update package publishing configuration to use latest tag (8ba8136d)
275
+
276
+ ## 7.5.10 (2026-03-06)
277
+
278
+ ## 🔧 Maintenance
279
+
280
+ - Streamline repository structure by consolidating GitHub workflows and removing duplicate configuration files (ea19cf96)
281
+
282
+ ## 7.5.9 (2026-03-06)
283
+
284
+ ## 🔧 Maintenance
285
+
286
+ - Improve logging and error handling across runner and API services [Runner, API] (543ee70a)
287
+ - Update SDK publishing workflow to use beta tag for pre-release versions [SDK] (543ee70a)
288
+ - Enhance sandbox agent reliability and self-update mechanisms [Runner] (543ee70a)
289
+
290
+ ## 7.5.8 (2026-03-06)
291
+
292
+ ## 🔧 Maintenance
293
+
294
+ - Remove deprecated SDK publishing workflow and update runner configuration [Runner] (84ec0219)
295
+
296
+ ## 7.5.7 (2026-03-06)
297
+
298
+ ## ✨ Features
299
+
300
+ - Improve Windows compatibility by renaming skill directories to use hyphens instead of colons [SDK] (7f00a912)
301
+ - Add automated release workflow for streamlined version management across packages (227a9f00)
302
+ - Enhance development environment with improved devcontainer setup and service management scripts (d5bf8460)
303
+
304
+ ## 🐛 Bug Fixes
305
+
306
+ - Fix usage limit checking functionality to properly validate account limits [API] (360ce1e9)
307
+ - Resolve cloning issues on Windows systems caused by invalid directory names in skill files [SDK] (a0cbb8db)
308
+
309
+ ## 🔧 Maintenance
310
+
311
+ - Streamline debugger interface with simplified HTML structure [SDK] (d5bf8460)
312
+ - Remove deprecated Vitest gate server and global setup files [SDK] (d5bf8460)
313
+ - Clean up unused debugger assets from web package [Web] (d5bf8460)
314
+ - Update environment configuration and service authentication [API] (19cf8b34)
315
+ - Consolidate GitHub workflows and remove duplicate test configurations [API] (d5bf8460)
316
+ - Add version synchronization and changelog generation scripts for better release management (d5bf8460)
317
+
318
+ ## 7.5.6 (2026-03-05)
319
+
320
+
321
+ ### Bug Fixes
322
+
323
+ * Ably direct connection provisioning + reconnect resilience ([39e778a](https://github.com/testdriverai/mono/commit/39e778ac73cc51caad076149cf1671b37973ccf6))
324
+ * Ably reconnect resilience - faster retry + suspended state handler ([c228202](https://github.com/testdriverai/mono/commit/c228202a6593b9431d0cc2d3514b0722bf526e8a))
325
+ * direction & amount not correctly sent to VM ([488a0d0](https://github.com/testdriverai/mono/commit/488a0d0921428e7673dddcf27b3238af8d88a7b1))
326
+ * Mouse scrolling in VM ([#291](https://github.com/testdriverai/mono/issues/291)) ([80ca55e](https://github.com/testdriverai/mono/commit/80ca55ec91ce00052bea81ce3033aad7c5216e47))
327
+ * OpenCV throws if needle is larger than the haystack ([#292](https://github.com/testdriverai/mono/issues/292)) ([652b8b1](https://github.com/testdriverai/mono/commit/652b8b109d1c45ee4becbfb923d33a15a1e0d443))
328
+ * provision Ably credentials via SSM for direct IP connections ([6ecdecf](https://github.com/testdriverai/mono/commit/6ecdecf766897a506cd20a3a03814eae48a168f8))
329
+ * reduce Sentry noise from PyAutoGUIClient unhandled data logs ([#122](https://github.com/testdriverai/mono/issues/122)) ([93b6d74](https://github.com/testdriverai/mono/commit/93b6d7485c1f6accc36d9efee10ea8b819c02d72))
330
+ * skip connectToSandboxDirect for E2B sandboxes (url already available from create) ([2a58865](https://github.com/testdriverai/mono/commit/2a58865ebc04b0299f7b92ed912aa78cfc2c8736))
331
+ * use team ID in E2B screenshot S3 path to match download-url access check ([0d1b6ee](https://github.com/testdriverai/mono/commit/0d1b6ee702008b31677c8f4e0858ee3f2acbbbaf))
332
+
333
+
334
+ ### Features
335
+
336
+ * Add elementSimilarity to selector cache ([#121](https://github.com/testdriverai/mono/issues/121)) ([ce39b2e](https://github.com/testdriverai/mono/commit/ce39b2e819e22d72f401e5762e45cef3478752d9))
337
+ * add type and confidence inputs to find endpoint ([#162](https://github.com/testdriverai/mono/issues/162)) ([283e699](https://github.com/testdriverai/mono/commit/283e699523ce362cf1e73086dbb99281336a5a23)), closes [#164](https://github.com/testdriverai/mono/issues/164)
338
+ * add type option to find(), move confidence to API, rename ocr to parse ([#640](https://github.com/testdriverai/mono/issues/640)) ([d98a94b](https://github.com/testdriverai/mono/commit/d98a94bd05c135c74d9fed2ebb72c709fc643337))
339
+ * add windows key ([59b96e8](https://github.com/testdriverai/mono/commit/59b96e8db4d2a29539d9dadc19431c70abe81e3e))
340
+ * **auth:** create team and start Stripe trial on new user signup ([1dcd2b4](https://github.com/testdriverai/mono/commit/1dcd2b408335515b09efdc8415248242c802393b))
341
+ * stream exec stdout in 16KB chunks to avoid Ably 64KB limit ([018f7b5](https://github.com/testdriverai/mono/commit/018f7b5380107818aa415714ee48a3656ebc2d76))
342
+ * Websocket connection health and request timeouts ([#109](https://github.com/testdriverai/mono/issues/109)) ([b7709f5](https://github.com/testdriverai/mono/commit/b7709f5dfaf3b051684f8728708cbc518754cb93))
343
+
344
+
345
+ ### Reverts
346
+
347
+ * Revert "Fix hanging node processes on Ctrl+C (#654)" (#683) ([5e68748](https://github.com/testdriverai/mono/commit/5e6874825c6718e006bbf84e2ba5edae57d173ac)), closes [#654](https://github.com/testdriverai/mono/issues/654) [#683](https://github.com/testdriverai/mono/issues/683)
348
+ * Revert "Ianjennings/fly (#72)" ([09e2417](https://github.com/testdriverai/mono/commit/09e241731537ff094e7096afc1b2e5d804353226)), closes [#72](https://github.com/testdriverai/mono/issues/72)
349
+ * Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/mono/commit/5037571440c33f8966104874c542c6c57a809510))
350
+ * Revert "Disable warm instances by setting pool size to 0 (#49)" (#51) ([c442ec5](https://github.com/testdriverai/mono/commit/c442ec52edab586be3ae8a3eadb34c32338cdea3)), closes [#49](https://github.com/testdriverai/mono/issues/49) [#51](https://github.com/testdriverai/mono/issues/51)
351
+ * Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/mono/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
352
+ * Revert "Change MAX_INSTANCES from 50 to 8 (#40)" (#41) ([1d4a3ca](https://github.com/testdriverai/mono/commit/1d4a3cacc5624b478f1e09b953cd56680e160292)), closes [#40](https://github.com/testdriverai/mono/issues/40) [#41](https://github.com/testdriverai/mono/issues/41)
353
+ * Revert "TDT-68 – Show User API Key on Team page" (#349) ([3a594aa](https://github.com/testdriverai/mono/commit/3a594aa73ef36f6b50585c72b9a770708a21c932)), closes [#349](https://github.com/testdriverai/mono/issues/349) [#348](https://github.com/testdriverai/mono/issues/348)
354
+ * Revert "TDT-129 – Always run postrun, even on failure (#368)" (#411) ([1be8c7c](https://github.com/testdriverai/mono/commit/1be8c7c1d22cff39d4a96261c31d8befb8376f47)), closes [#368](https://github.com/testdriverai/mono/issues/368) [#411](https://github.com/testdriverai/mono/issues/411)
355
+ * Revert "TDT-139 – Add hover-text-with-single-characters test" (#407) ([203529a](https://github.com/testdriverai/mono/commit/203529a434e21eb0ccc8037c6ce88f53a4a62f81)), closes [#407](https://github.com/testdriverai/mono/issues/407) [#381](https://github.com/testdriverai/mono/issues/381)
356
+ * Revert "Fix json-schema (#387)" (#389) ([4bddbba](https://github.com/testdriverai/mono/commit/4bddbbad49cd0e491f47e86fb5ecbf945f162bdc)), closes [#387](https://github.com/testdriverai/mono/issues/387) [#389](https://github.com/testdriverai/mono/issues/389)
357
+ * Revert "build with new version of testdriverai client" ([70bdb70](https://github.com/testdriverai/mono/commit/70bdb7033e99f8457205a126261dde295ec1b1f3))
358
+ * Revert "TDT-68-user-apiKey" (#347) ([ecc6057](https://github.com/testdriverai/mono/commit/ecc6057f719d92f8dc7a32e156fdc812f04a0d3b)), closes [#347](https://github.com/testdriverai/mono/issues/347) [#346](https://github.com/testdriverai/mono/issues/346)
359
+ * Revert "TD-2151 – throw if an env variable is missing (#285)" (#288) ([2fcbdf1](https://github.com/testdriverai/mono/commit/2fcbdf1f190b9ced7644f872fd02e64339dbe956)), closes [#285](https://github.com/testdriverai/mono/issues/285) [#288](https://github.com/testdriverai/mono/issues/288)
360
+ * Revert "Match Images Server Side (#268)" ([1a49198](https://github.com/testdriverai/mono/commit/1a49198b34293d8da8972b32d02bac94c1f1519b)), closes [#268](https://github.com/testdriverai/mono/issues/268)
361
+ * Revert "optimal fix for typing repeated chars (#235)" (#254) ([da773b3](https://github.com/testdriverai/mono/commit/da773b34055ccccf38993c23c4a8a86ccc5ccf74)), closes [#235](https://github.com/testdriverai/mono/issues/235) [#254](https://github.com/testdriverai/mono/issues/254)
362
+ * Revert "make sure things get summarized" ([38be3a3](https://github.com/testdriverai/mono/commit/38be3a3da13147760fc4e84b82bb5672343e9493))
363
+ * Revert "reverting to 137" ([07d9d48](https://github.com/testdriverai/mono/commit/07d9d48e2820119eacee6daafcf7dda89182f6d5))
364
+ * Revert "Add Api key support (#127)" ([f0dccb7](https://github.com/testdriverai/mono/commit/f0dccb72bb2ed35a4634f83f0e71b58bfe8516f5)), closes [#127](https://github.com/testdriverai/mono/issues/127)
365
+ * Revert "chrome extension survey page (#269)" ([6fe67d1](https://github.com/testdriverai/mono/commit/6fe67d18fa2e238f173c96f5f24af0d7d277ed0c)), closes [#269](https://github.com/testdriverai/mono/issues/269)
366
+ * Revert "Update "Always by your side" description" ([26893a9](https://github.com/testdriverai/mono/commit/26893a90008a099d51ff6955642e54eb917cf464))
367
+ * Revert "add correct reporting for env in vite" ([3fb0c8f](https://github.com/testdriverai/mono/commit/3fb0c8ff309beffa5f6a99cec645a2693f12030a))
368
+ ## 7.5.5 (2026-03-05)
369
+
370
+
371
+ ### Bug Fixes
372
+
373
+ * Ably direct connection provisioning + reconnect resilience ([39e778a](https://github.com/testdriverai/mono/commit/39e778ac73cc51caad076149cf1671b37973ccf6))
374
+ * Ably reconnect resilience - faster retry + suspended state handler ([c228202](https://github.com/testdriverai/mono/commit/c228202a6593b9431d0cc2d3514b0722bf526e8a))
375
+ * direction & amount not correctly sent to VM ([488a0d0](https://github.com/testdriverai/mono/commit/488a0d0921428e7673dddcf27b3238af8d88a7b1))
376
+ * Mouse scrolling in VM ([#291](https://github.com/testdriverai/mono/issues/291)) ([80ca55e](https://github.com/testdriverai/mono/commit/80ca55ec91ce00052bea81ce3033aad7c5216e47))
377
+ * OpenCV throws if needle is larger than the haystack ([#292](https://github.com/testdriverai/mono/issues/292)) ([652b8b1](https://github.com/testdriverai/mono/commit/652b8b109d1c45ee4becbfb923d33a15a1e0d443))
378
+ * provision Ably credentials via SSM for direct IP connections ([6ecdecf](https://github.com/testdriverai/mono/commit/6ecdecf766897a506cd20a3a03814eae48a168f8))
379
+ * reduce Sentry noise from PyAutoGUIClient unhandled data logs ([#122](https://github.com/testdriverai/mono/issues/122)) ([93b6d74](https://github.com/testdriverai/mono/commit/93b6d7485c1f6accc36d9efee10ea8b819c02d72))
380
+ * skip connectToSandboxDirect for E2B sandboxes (url already available from create) ([2a58865](https://github.com/testdriverai/mono/commit/2a58865ebc04b0299f7b92ed912aa78cfc2c8736))
381
+ * use team ID in E2B screenshot S3 path to match download-url access check ([0d1b6ee](https://github.com/testdriverai/mono/commit/0d1b6ee702008b31677c8f4e0858ee3f2acbbbaf))
382
+
383
+
384
+ ### Features
385
+
386
+ * Add elementSimilarity to selector cache ([#121](https://github.com/testdriverai/mono/issues/121)) ([ce39b2e](https://github.com/testdriverai/mono/commit/ce39b2e819e22d72f401e5762e45cef3478752d9))
387
+ * add type and confidence inputs to find endpoint ([#162](https://github.com/testdriverai/mono/issues/162)) ([283e699](https://github.com/testdriverai/mono/commit/283e699523ce362cf1e73086dbb99281336a5a23)), closes [#164](https://github.com/testdriverai/mono/issues/164)
388
+ * add type option to find(), move confidence to API, rename ocr to parse ([#640](https://github.com/testdriverai/mono/issues/640)) ([d98a94b](https://github.com/testdriverai/mono/commit/d98a94bd05c135c74d9fed2ebb72c709fc643337))
389
+ * add windows key ([59b96e8](https://github.com/testdriverai/mono/commit/59b96e8db4d2a29539d9dadc19431c70abe81e3e))
390
+ * **auth:** create team and start Stripe trial on new user signup ([1dcd2b4](https://github.com/testdriverai/mono/commit/1dcd2b408335515b09efdc8415248242c802393b))
391
+ * stream exec stdout in 16KB chunks to avoid Ably 64KB limit ([018f7b5](https://github.com/testdriverai/mono/commit/018f7b5380107818aa415714ee48a3656ebc2d76))
392
+ * Websocket connection health and request timeouts ([#109](https://github.com/testdriverai/mono/issues/109)) ([b7709f5](https://github.com/testdriverai/mono/commit/b7709f5dfaf3b051684f8728708cbc518754cb93))
393
+
394
+
395
+ ### Reverts
396
+
397
+ * Revert "Fix hanging node processes on Ctrl+C (#654)" (#683) ([5e68748](https://github.com/testdriverai/mono/commit/5e6874825c6718e006bbf84e2ba5edae57d173ac)), closes [#654](https://github.com/testdriverai/mono/issues/654) [#683](https://github.com/testdriverai/mono/issues/683)
398
+ * Revert "Ianjennings/fly (#72)" ([09e2417](https://github.com/testdriverai/mono/commit/09e241731537ff094e7096afc1b2e5d804353226)), closes [#72](https://github.com/testdriverai/mono/issues/72)
399
+ * Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/mono/commit/5037571440c33f8966104874c542c6c57a809510))
400
+ * Revert "Disable warm instances by setting pool size to 0 (#49)" (#51) ([c442ec5](https://github.com/testdriverai/mono/commit/c442ec52edab586be3ae8a3eadb34c32338cdea3)), closes [#49](https://github.com/testdriverai/mono/issues/49) [#51](https://github.com/testdriverai/mono/issues/51)
401
+ * Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/mono/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
402
+ * Revert "Change MAX_INSTANCES from 50 to 8 (#40)" (#41) ([1d4a3ca](https://github.com/testdriverai/mono/commit/1d4a3cacc5624b478f1e09b953cd56680e160292)), closes [#40](https://github.com/testdriverai/mono/issues/40) [#41](https://github.com/testdriverai/mono/issues/41)
403
+ * Revert "TDT-68 – Show User API Key on Team page" (#349) ([3a594aa](https://github.com/testdriverai/mono/commit/3a594aa73ef36f6b50585c72b9a770708a21c932)), closes [#349](https://github.com/testdriverai/mono/issues/349) [#348](https://github.com/testdriverai/mono/issues/348)
404
+ * Revert "TDT-129 – Always run postrun, even on failure (#368)" (#411) ([1be8c7c](https://github.com/testdriverai/mono/commit/1be8c7c1d22cff39d4a96261c31d8befb8376f47)), closes [#368](https://github.com/testdriverai/mono/issues/368) [#411](https://github.com/testdriverai/mono/issues/411)
405
+ * Revert "TDT-139 – Add hover-text-with-single-characters test" (#407) ([203529a](https://github.com/testdriverai/mono/commit/203529a434e21eb0ccc8037c6ce88f53a4a62f81)), closes [#407](https://github.com/testdriverai/mono/issues/407) [#381](https://github.com/testdriverai/mono/issues/381)
406
+ * Revert "Fix json-schema (#387)" (#389) ([4bddbba](https://github.com/testdriverai/mono/commit/4bddbbad49cd0e491f47e86fb5ecbf945f162bdc)), closes [#387](https://github.com/testdriverai/mono/issues/387) [#389](https://github.com/testdriverai/mono/issues/389)
407
+ * Revert "build with new version of testdriverai client" ([70bdb70](https://github.com/testdriverai/mono/commit/70bdb7033e99f8457205a126261dde295ec1b1f3))
408
+ * Revert "TDT-68-user-apiKey" (#347) ([ecc6057](https://github.com/testdriverai/mono/commit/ecc6057f719d92f8dc7a32e156fdc812f04a0d3b)), closes [#347](https://github.com/testdriverai/mono/issues/347) [#346](https://github.com/testdriverai/mono/issues/346)
409
+ * Revert "TD-2151 – throw if an env variable is missing (#285)" (#288) ([2fcbdf1](https://github.com/testdriverai/mono/commit/2fcbdf1f190b9ced7644f872fd02e64339dbe956)), closes [#285](https://github.com/testdriverai/mono/issues/285) [#288](https://github.com/testdriverai/mono/issues/288)
410
+ * Revert "Match Images Server Side (#268)" ([1a49198](https://github.com/testdriverai/mono/commit/1a49198b34293d8da8972b32d02bac94c1f1519b)), closes [#268](https://github.com/testdriverai/mono/issues/268)
411
+ * Revert "optimal fix for typing repeated chars (#235)" (#254) ([da773b3](https://github.com/testdriverai/mono/commit/da773b34055ccccf38993c23c4a8a86ccc5ccf74)), closes [#235](https://github.com/testdriverai/mono/issues/235) [#254](https://github.com/testdriverai/mono/issues/254)
412
+ * Revert "make sure things get summarized" ([38be3a3](https://github.com/testdriverai/mono/commit/38be3a3da13147760fc4e84b82bb5672343e9493))
413
+ * Revert "reverting to 137" ([07d9d48](https://github.com/testdriverai/mono/commit/07d9d48e2820119eacee6daafcf7dda89182f6d5))
414
+ * Revert "Add Api key support (#127)" ([f0dccb7](https://github.com/testdriverai/mono/commit/f0dccb72bb2ed35a4634f83f0e71b58bfe8516f5)), closes [#127](https://github.com/testdriverai/mono/issues/127)
415
+ * Revert "chrome extension survey page (#269)" ([6fe67d1](https://github.com/testdriverai/mono/commit/6fe67d18fa2e238f173c96f5f24af0d7d277ed0c)), closes [#269](https://github.com/testdriverai/mono/issues/269)
416
+ * Revert "Update "Always by your side" description" ([26893a9](https://github.com/testdriverai/mono/commit/26893a90008a099d51ff6955642e54eb917cf464))
417
+ * Revert "add correct reporting for env in vite" ([3fb0c8f](https://github.com/testdriverai/mono/commit/3fb0c8ff309beffa5f6a99cec645a2693f12030a))
418
+ ## 7.5.4 (2026-03-05)
419
+
420
+
421
+ ### Bug Fixes
422
+
423
+ * Ably direct connection provisioning + reconnect resilience ([39e778a](https://github.com/testdriverai/mono/commit/39e778ac73cc51caad076149cf1671b37973ccf6))
424
+ * Ably reconnect resilience - faster retry + suspended state handler ([c228202](https://github.com/testdriverai/mono/commit/c228202a6593b9431d0cc2d3514b0722bf526e8a))
425
+ * direction & amount not correctly sent to VM ([488a0d0](https://github.com/testdriverai/mono/commit/488a0d0921428e7673dddcf27b3238af8d88a7b1))
426
+ * Mouse scrolling in VM ([#291](https://github.com/testdriverai/mono/issues/291)) ([80ca55e](https://github.com/testdriverai/mono/commit/80ca55ec91ce00052bea81ce3033aad7c5216e47))
427
+ * OpenCV throws if needle is larger than the haystack ([#292](https://github.com/testdriverai/mono/issues/292)) ([652b8b1](https://github.com/testdriverai/mono/commit/652b8b109d1c45ee4becbfb923d33a15a1e0d443))
428
+ * provision Ably credentials via SSM for direct IP connections ([6ecdecf](https://github.com/testdriverai/mono/commit/6ecdecf766897a506cd20a3a03814eae48a168f8))
429
+ * reduce Sentry noise from PyAutoGUIClient unhandled data logs ([#122](https://github.com/testdriverai/mono/issues/122)) ([93b6d74](https://github.com/testdriverai/mono/commit/93b6d7485c1f6accc36d9efee10ea8b819c02d72))
430
+ * skip connectToSandboxDirect for E2B sandboxes (url already available from create) ([2a58865](https://github.com/testdriverai/mono/commit/2a58865ebc04b0299f7b92ed912aa78cfc2c8736))
431
+ * use team ID in E2B screenshot S3 path to match download-url access check ([0d1b6ee](https://github.com/testdriverai/mono/commit/0d1b6ee702008b31677c8f4e0858ee3f2acbbbaf))
432
+
433
+
434
+ ### Features
435
+
436
+ * Add elementSimilarity to selector cache ([#121](https://github.com/testdriverai/mono/issues/121)) ([ce39b2e](https://github.com/testdriverai/mono/commit/ce39b2e819e22d72f401e5762e45cef3478752d9))
437
+ * add type and confidence inputs to find endpoint ([#162](https://github.com/testdriverai/mono/issues/162)) ([283e699](https://github.com/testdriverai/mono/commit/283e699523ce362cf1e73086dbb99281336a5a23)), closes [#164](https://github.com/testdriverai/mono/issues/164)
438
+ * add type option to find(), move confidence to API, rename ocr to parse ([#640](https://github.com/testdriverai/mono/issues/640)) ([d98a94b](https://github.com/testdriverai/mono/commit/d98a94bd05c135c74d9fed2ebb72c709fc643337))
439
+ * add windows key ([59b96e8](https://github.com/testdriverai/mono/commit/59b96e8db4d2a29539d9dadc19431c70abe81e3e))
440
+ * **auth:** create team and start Stripe trial on new user signup ([1dcd2b4](https://github.com/testdriverai/mono/commit/1dcd2b408335515b09efdc8415248242c802393b))
441
+ * stream exec stdout in 16KB chunks to avoid Ably 64KB limit ([018f7b5](https://github.com/testdriverai/mono/commit/018f7b5380107818aa415714ee48a3656ebc2d76))
442
+ * Websocket connection health and request timeouts ([#109](https://github.com/testdriverai/mono/issues/109)) ([b7709f5](https://github.com/testdriverai/mono/commit/b7709f5dfaf3b051684f8728708cbc518754cb93))
443
+
444
+
445
+ ### Reverts
446
+
447
+ * Revert "Fix hanging node processes on Ctrl+C (#654)" (#683) ([5e68748](https://github.com/testdriverai/mono/commit/5e6874825c6718e006bbf84e2ba5edae57d173ac)), closes [#654](https://github.com/testdriverai/mono/issues/654) [#683](https://github.com/testdriverai/mono/issues/683)
448
+ * Revert "Ianjennings/fly (#72)" ([09e2417](https://github.com/testdriverai/mono/commit/09e241731537ff094e7096afc1b2e5d804353226)), closes [#72](https://github.com/testdriverai/mono/issues/72)
449
+ * Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/mono/commit/5037571440c33f8966104874c542c6c57a809510))
450
+ * Revert "Disable warm instances by setting pool size to 0 (#49)" (#51) ([c442ec5](https://github.com/testdriverai/mono/commit/c442ec52edab586be3ae8a3eadb34c32338cdea3)), closes [#49](https://github.com/testdriverai/mono/issues/49) [#51](https://github.com/testdriverai/mono/issues/51)
451
+ * Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/mono/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
452
+ * Revert "Change MAX_INSTANCES from 50 to 8 (#40)" (#41) ([1d4a3ca](https://github.com/testdriverai/mono/commit/1d4a3cacc5624b478f1e09b953cd56680e160292)), closes [#40](https://github.com/testdriverai/mono/issues/40) [#41](https://github.com/testdriverai/mono/issues/41)
453
+ * Revert "TDT-68 – Show User API Key on Team page" (#349) ([3a594aa](https://github.com/testdriverai/mono/commit/3a594aa73ef36f6b50585c72b9a770708a21c932)), closes [#349](https://github.com/testdriverai/mono/issues/349) [#348](https://github.com/testdriverai/mono/issues/348)
454
+ * Revert "TDT-129 – Always run postrun, even on failure (#368)" (#411) ([1be8c7c](https://github.com/testdriverai/mono/commit/1be8c7c1d22cff39d4a96261c31d8befb8376f47)), closes [#368](https://github.com/testdriverai/mono/issues/368) [#411](https://github.com/testdriverai/mono/issues/411)
455
+ * Revert "TDT-139 – Add hover-text-with-single-characters test" (#407) ([203529a](https://github.com/testdriverai/mono/commit/203529a434e21eb0ccc8037c6ce88f53a4a62f81)), closes [#407](https://github.com/testdriverai/mono/issues/407) [#381](https://github.com/testdriverai/mono/issues/381)
456
+ * Revert "Fix json-schema (#387)" (#389) ([4bddbba](https://github.com/testdriverai/mono/commit/4bddbbad49cd0e491f47e86fb5ecbf945f162bdc)), closes [#387](https://github.com/testdriverai/mono/issues/387) [#389](https://github.com/testdriverai/mono/issues/389)
457
+ * Revert "build with new version of testdriverai client" ([70bdb70](https://github.com/testdriverai/mono/commit/70bdb7033e99f8457205a126261dde295ec1b1f3))
458
+ * Revert "TDT-68-user-apiKey" (#347) ([ecc6057](https://github.com/testdriverai/mono/commit/ecc6057f719d92f8dc7a32e156fdc812f04a0d3b)), closes [#347](https://github.com/testdriverai/mono/issues/347) [#346](https://github.com/testdriverai/mono/issues/346)
459
+ * Revert "TD-2151 – throw if an env variable is missing (#285)" (#288) ([2fcbdf1](https://github.com/testdriverai/mono/commit/2fcbdf1f190b9ced7644f872fd02e64339dbe956)), closes [#285](https://github.com/testdriverai/mono/issues/285) [#288](https://github.com/testdriverai/mono/issues/288)
460
+ * Revert "Match Images Server Side (#268)" ([1a49198](https://github.com/testdriverai/mono/commit/1a49198b34293d8da8972b32d02bac94c1f1519b)), closes [#268](https://github.com/testdriverai/mono/issues/268)
461
+ * Revert "optimal fix for typing repeated chars (#235)" (#254) ([da773b3](https://github.com/testdriverai/mono/commit/da773b34055ccccf38993c23c4a8a86ccc5ccf74)), closes [#235](https://github.com/testdriverai/mono/issues/235) [#254](https://github.com/testdriverai/mono/issues/254)
462
+ * Revert "make sure things get summarized" ([38be3a3](https://github.com/testdriverai/mono/commit/38be3a3da13147760fc4e84b82bb5672343e9493))
463
+ * Revert "reverting to 137" ([07d9d48](https://github.com/testdriverai/mono/commit/07d9d48e2820119eacee6daafcf7dda89182f6d5))
464
+ * Revert "Add Api key support (#127)" ([f0dccb7](https://github.com/testdriverai/mono/commit/f0dccb72bb2ed35a4634f83f0e71b58bfe8516f5)), closes [#127](https://github.com/testdriverai/mono/issues/127)
465
+ * Revert "chrome extension survey page (#269)" ([6fe67d1](https://github.com/testdriverai/mono/commit/6fe67d18fa2e238f173c96f5f24af0d7d277ed0c)), closes [#269](https://github.com/testdriverai/mono/issues/269)
466
+ * Revert "Update "Always by your side" description" ([26893a9](https://github.com/testdriverai/mono/commit/26893a90008a099d51ff6955642e54eb917cf464))
467
+ * Revert "add correct reporting for env in vite" ([3fb0c8f](https://github.com/testdriverai/mono/commit/3fb0c8ff309beffa5f6a99cec645a2693f12030a))
468
+ ## 7.5.3 (2026-03-05)
469
+
470
+
471
+ ### Bug Fixes
472
+
473
+ * Ably direct connection provisioning + reconnect resilience ([39e778a](https://github.com/testdriverai/mono/commit/39e778ac73cc51caad076149cf1671b37973ccf6))
474
+ * Ably reconnect resilience - faster retry + suspended state handler ([c228202](https://github.com/testdriverai/mono/commit/c228202a6593b9431d0cc2d3514b0722bf526e8a))
475
+ * direction & amount not correctly sent to VM ([488a0d0](https://github.com/testdriverai/mono/commit/488a0d0921428e7673dddcf27b3238af8d88a7b1))
476
+ * Mouse scrolling in VM ([#291](https://github.com/testdriverai/mono/issues/291)) ([80ca55e](https://github.com/testdriverai/mono/commit/80ca55ec91ce00052bea81ce3033aad7c5216e47))
477
+ * OpenCV throws if needle is larger than the haystack ([#292](https://github.com/testdriverai/mono/issues/292)) ([652b8b1](https://github.com/testdriverai/mono/commit/652b8b109d1c45ee4becbfb923d33a15a1e0d443))
478
+ * provision Ably credentials via SSM for direct IP connections ([6ecdecf](https://github.com/testdriverai/mono/commit/6ecdecf766897a506cd20a3a03814eae48a168f8))
479
+ * reduce Sentry noise from PyAutoGUIClient unhandled data logs ([#122](https://github.com/testdriverai/mono/issues/122)) ([93b6d74](https://github.com/testdriverai/mono/commit/93b6d7485c1f6accc36d9efee10ea8b819c02d72))
480
+ * skip connectToSandboxDirect for E2B sandboxes (url already available from create) ([2a58865](https://github.com/testdriverai/mono/commit/2a58865ebc04b0299f7b92ed912aa78cfc2c8736))
481
+ * use team ID in E2B screenshot S3 path to match download-url access check ([0d1b6ee](https://github.com/testdriverai/mono/commit/0d1b6ee702008b31677c8f4e0858ee3f2acbbbaf))
482
+
483
+
484
+ ### Features
485
+
486
+ * Add elementSimilarity to selector cache ([#121](https://github.com/testdriverai/mono/issues/121)) ([ce39b2e](https://github.com/testdriverai/mono/commit/ce39b2e819e22d72f401e5762e45cef3478752d9))
487
+ * add type and confidence inputs to find endpoint ([#162](https://github.com/testdriverai/mono/issues/162)) ([283e699](https://github.com/testdriverai/mono/commit/283e699523ce362cf1e73086dbb99281336a5a23)), closes [#164](https://github.com/testdriverai/mono/issues/164)
488
+ * add type option to find(), move confidence to API, rename ocr to parse ([#640](https://github.com/testdriverai/mono/issues/640)) ([d98a94b](https://github.com/testdriverai/mono/commit/d98a94bd05c135c74d9fed2ebb72c709fc643337))
489
+ * add windows key ([59b96e8](https://github.com/testdriverai/mono/commit/59b96e8db4d2a29539d9dadc19431c70abe81e3e))
490
+ * **auth:** create team and start Stripe trial on new user signup ([1dcd2b4](https://github.com/testdriverai/mono/commit/1dcd2b408335515b09efdc8415248242c802393b))
491
+ * stream exec stdout in 16KB chunks to avoid Ably 64KB limit ([018f7b5](https://github.com/testdriverai/mono/commit/018f7b5380107818aa415714ee48a3656ebc2d76))
492
+ * Websocket connection health and request timeouts ([#109](https://github.com/testdriverai/mono/issues/109)) ([b7709f5](https://github.com/testdriverai/mono/commit/b7709f5dfaf3b051684f8728708cbc518754cb93))
493
+
494
+
495
+ ### Reverts
496
+
497
+ * Revert "Fix hanging node processes on Ctrl+C (#654)" (#683) ([5e68748](https://github.com/testdriverai/mono/commit/5e6874825c6718e006bbf84e2ba5edae57d173ac)), closes [#654](https://github.com/testdriverai/mono/issues/654) [#683](https://github.com/testdriverai/mono/issues/683)
498
+ * Revert "Ianjennings/fly (#72)" ([09e2417](https://github.com/testdriverai/mono/commit/09e241731537ff094e7096afc1b2e5d804353226)), closes [#72](https://github.com/testdriverai/mono/issues/72)
499
+ * Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/mono/commit/5037571440c33f8966104874c542c6c57a809510))
500
+ * Revert "Disable warm instances by setting pool size to 0 (#49)" (#51) ([c442ec5](https://github.com/testdriverai/mono/commit/c442ec52edab586be3ae8a3eadb34c32338cdea3)), closes [#49](https://github.com/testdriverai/mono/issues/49) [#51](https://github.com/testdriverai/mono/issues/51)
501
+ * Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/mono/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
502
+ * Revert "Change MAX_INSTANCES from 50 to 8 (#40)" (#41) ([1d4a3ca](https://github.com/testdriverai/mono/commit/1d4a3cacc5624b478f1e09b953cd56680e160292)), closes [#40](https://github.com/testdriverai/mono/issues/40) [#41](https://github.com/testdriverai/mono/issues/41)
503
+ * Revert "TDT-68 – Show User API Key on Team page" (#349) ([3a594aa](https://github.com/testdriverai/mono/commit/3a594aa73ef36f6b50585c72b9a770708a21c932)), closes [#349](https://github.com/testdriverai/mono/issues/349) [#348](https://github.com/testdriverai/mono/issues/348)
504
+ * Revert "TDT-129 – Always run postrun, even on failure (#368)" (#411) ([1be8c7c](https://github.com/testdriverai/mono/commit/1be8c7c1d22cff39d4a96261c31d8befb8376f47)), closes [#368](https://github.com/testdriverai/mono/issues/368) [#411](https://github.com/testdriverai/mono/issues/411)
505
+ * Revert "TDT-139 – Add hover-text-with-single-characters test" (#407) ([203529a](https://github.com/testdriverai/mono/commit/203529a434e21eb0ccc8037c6ce88f53a4a62f81)), closes [#407](https://github.com/testdriverai/mono/issues/407) [#381](https://github.com/testdriverai/mono/issues/381)
506
+ * Revert "Fix json-schema (#387)" (#389) ([4bddbba](https://github.com/testdriverai/mono/commit/4bddbbad49cd0e491f47e86fb5ecbf945f162bdc)), closes [#387](https://github.com/testdriverai/mono/issues/387) [#389](https://github.com/testdriverai/mono/issues/389)
507
+ * Revert "build with new version of testdriverai client" ([70bdb70](https://github.com/testdriverai/mono/commit/70bdb7033e99f8457205a126261dde295ec1b1f3))
508
+ * Revert "TDT-68-user-apiKey" (#347) ([ecc6057](https://github.com/testdriverai/mono/commit/ecc6057f719d92f8dc7a32e156fdc812f04a0d3b)), closes [#347](https://github.com/testdriverai/mono/issues/347) [#346](https://github.com/testdriverai/mono/issues/346)
509
+ * Revert "TD-2151 – throw if an env variable is missing (#285)" (#288) ([2fcbdf1](https://github.com/testdriverai/mono/commit/2fcbdf1f190b9ced7644f872fd02e64339dbe956)), closes [#285](https://github.com/testdriverai/mono/issues/285) [#288](https://github.com/testdriverai/mono/issues/288)
510
+ * Revert "Match Images Server Side (#268)" ([1a49198](https://github.com/testdriverai/mono/commit/1a49198b34293d8da8972b32d02bac94c1f1519b)), closes [#268](https://github.com/testdriverai/mono/issues/268)
511
+ * Revert "optimal fix for typing repeated chars (#235)" (#254) ([da773b3](https://github.com/testdriverai/mono/commit/da773b34055ccccf38993c23c4a8a86ccc5ccf74)), closes [#235](https://github.com/testdriverai/mono/issues/235) [#254](https://github.com/testdriverai/mono/issues/254)
512
+ * Revert "make sure things get summarized" ([38be3a3](https://github.com/testdriverai/mono/commit/38be3a3da13147760fc4e84b82bb5672343e9493))
513
+ * Revert "reverting to 137" ([07d9d48](https://github.com/testdriverai/mono/commit/07d9d48e2820119eacee6daafcf7dda89182f6d5))
514
+ * Revert "Add Api key support (#127)" ([f0dccb7](https://github.com/testdriverai/mono/commit/f0dccb72bb2ed35a4634f83f0e71b58bfe8516f5)), closes [#127](https://github.com/testdriverai/mono/issues/127)
515
+ * Revert "chrome extension survey page (#269)" ([6fe67d1](https://github.com/testdriverai/mono/commit/6fe67d18fa2e238f173c96f5f24af0d7d277ed0c)), closes [#269](https://github.com/testdriverai/mono/issues/269)
516
+ * Revert "Update "Always by your side" description" ([26893a9](https://github.com/testdriverai/mono/commit/26893a90008a099d51ff6955642e54eb917cf464))
517
+ * Revert "add correct reporting for env in vite" ([3fb0c8f](https://github.com/testdriverai/mono/commit/3fb0c8ff309beffa5f6a99cec645a2693f12030a))
518
+ ## 7.5.2 (2026-03-04)
519
+
520
+
521
+ ### Bug Fixes
522
+
523
+ * Ably direct connection provisioning + reconnect resilience ([39e778a](https://github.com/testdriverai/mono/commit/39e778ac73cc51caad076149cf1671b37973ccf6))
524
+ * Ably reconnect resilience - faster retry + suspended state handler ([c228202](https://github.com/testdriverai/mono/commit/c228202a6593b9431d0cc2d3514b0722bf526e8a))
525
+ * direction & amount not correctly sent to VM ([488a0d0](https://github.com/testdriverai/mono/commit/488a0d0921428e7673dddcf27b3238af8d88a7b1))
526
+ * Mouse scrolling in VM ([#291](https://github.com/testdriverai/mono/issues/291)) ([80ca55e](https://github.com/testdriverai/mono/commit/80ca55ec91ce00052bea81ce3033aad7c5216e47))
527
+ * OpenCV throws if needle is larger than the haystack ([#292](https://github.com/testdriverai/mono/issues/292)) ([652b8b1](https://github.com/testdriverai/mono/commit/652b8b109d1c45ee4becbfb923d33a15a1e0d443))
528
+ * provision Ably credentials via SSM for direct IP connections ([6ecdecf](https://github.com/testdriverai/mono/commit/6ecdecf766897a506cd20a3a03814eae48a168f8))
529
+ * reduce Sentry noise from PyAutoGUIClient unhandled data logs ([#122](https://github.com/testdriverai/mono/issues/122)) ([93b6d74](https://github.com/testdriverai/mono/commit/93b6d7485c1f6accc36d9efee10ea8b819c02d72))
530
+ * skip connectToSandboxDirect for E2B sandboxes (url already available from create) ([2a58865](https://github.com/testdriverai/mono/commit/2a58865ebc04b0299f7b92ed912aa78cfc2c8736))
531
+ * use team ID in E2B screenshot S3 path to match download-url access check ([0d1b6ee](https://github.com/testdriverai/mono/commit/0d1b6ee702008b31677c8f4e0858ee3f2acbbbaf))
532
+
533
+
534
+ ### Features
535
+
536
+ * Add elementSimilarity to selector cache ([#121](https://github.com/testdriverai/mono/issues/121)) ([ce39b2e](https://github.com/testdriverai/mono/commit/ce39b2e819e22d72f401e5762e45cef3478752d9))
537
+ * add type and confidence inputs to find endpoint ([#162](https://github.com/testdriverai/mono/issues/162)) ([283e699](https://github.com/testdriverai/mono/commit/283e699523ce362cf1e73086dbb99281336a5a23)), closes [#164](https://github.com/testdriverai/mono/issues/164)
538
+ * add type option to find(), move confidence to API, rename ocr to parse ([#640](https://github.com/testdriverai/mono/issues/640)) ([d98a94b](https://github.com/testdriverai/mono/commit/d98a94bd05c135c74d9fed2ebb72c709fc643337))
539
+ * add windows key ([59b96e8](https://github.com/testdriverai/mono/commit/59b96e8db4d2a29539d9dadc19431c70abe81e3e))
540
+ * **auth:** create team and start Stripe trial on new user signup ([1dcd2b4](https://github.com/testdriverai/mono/commit/1dcd2b408335515b09efdc8415248242c802393b))
541
+ * stream exec stdout in 16KB chunks to avoid Ably 64KB limit ([018f7b5](https://github.com/testdriverai/mono/commit/018f7b5380107818aa415714ee48a3656ebc2d76))
542
+ * Websocket connection health and request timeouts ([#109](https://github.com/testdriverai/mono/issues/109)) ([b7709f5](https://github.com/testdriverai/mono/commit/b7709f5dfaf3b051684f8728708cbc518754cb93))
543
+
544
+
545
+ ### Reverts
546
+
547
+ * Revert "Fix hanging node processes on Ctrl+C (#654)" (#683) ([5e68748](https://github.com/testdriverai/mono/commit/5e6874825c6718e006bbf84e2ba5edae57d173ac)), closes [#654](https://github.com/testdriverai/mono/issues/654) [#683](https://github.com/testdriverai/mono/issues/683)
548
+ * Revert "Ianjennings/fly (#72)" ([09e2417](https://github.com/testdriverai/mono/commit/09e241731537ff094e7096afc1b2e5d804353226)), closes [#72](https://github.com/testdriverai/mono/issues/72)
549
+ * Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/mono/commit/5037571440c33f8966104874c542c6c57a809510))
550
+ * Revert "Disable warm instances by setting pool size to 0 (#49)" (#51) ([c442ec5](https://github.com/testdriverai/mono/commit/c442ec52edab586be3ae8a3eadb34c32338cdea3)), closes [#49](https://github.com/testdriverai/mono/issues/49) [#51](https://github.com/testdriverai/mono/issues/51)
551
+ * Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/mono/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
552
+ * Revert "Change MAX_INSTANCES from 50 to 8 (#40)" (#41) ([1d4a3ca](https://github.com/testdriverai/mono/commit/1d4a3cacc5624b478f1e09b953cd56680e160292)), closes [#40](https://github.com/testdriverai/mono/issues/40) [#41](https://github.com/testdriverai/mono/issues/41)
553
+ * Revert "TDT-68 – Show User API Key on Team page" (#349) ([3a594aa](https://github.com/testdriverai/mono/commit/3a594aa73ef36f6b50585c72b9a770708a21c932)), closes [#349](https://github.com/testdriverai/mono/issues/349) [#348](https://github.com/testdriverai/mono/issues/348)
554
+ * Revert "TDT-129 – Always run postrun, even on failure (#368)" (#411) ([1be8c7c](https://github.com/testdriverai/mono/commit/1be8c7c1d22cff39d4a96261c31d8befb8376f47)), closes [#368](https://github.com/testdriverai/mono/issues/368) [#411](https://github.com/testdriverai/mono/issues/411)
555
+ * Revert "TDT-139 – Add hover-text-with-single-characters test" (#407) ([203529a](https://github.com/testdriverai/mono/commit/203529a434e21eb0ccc8037c6ce88f53a4a62f81)), closes [#407](https://github.com/testdriverai/mono/issues/407) [#381](https://github.com/testdriverai/mono/issues/381)
556
+ * Revert "Fix json-schema (#387)" (#389) ([4bddbba](https://github.com/testdriverai/mono/commit/4bddbbad49cd0e491f47e86fb5ecbf945f162bdc)), closes [#387](https://github.com/testdriverai/mono/issues/387) [#389](https://github.com/testdriverai/mono/issues/389)
557
+ * Revert "build with new version of testdriverai client" ([70bdb70](https://github.com/testdriverai/mono/commit/70bdb7033e99f8457205a126261dde295ec1b1f3))
558
+ * Revert "TDT-68-user-apiKey" (#347) ([ecc6057](https://github.com/testdriverai/mono/commit/ecc6057f719d92f8dc7a32e156fdc812f04a0d3b)), closes [#347](https://github.com/testdriverai/mono/issues/347) [#346](https://github.com/testdriverai/mono/issues/346)
559
+ * Revert "TD-2151 – throw if an env variable is missing (#285)" (#288) ([2fcbdf1](https://github.com/testdriverai/mono/commit/2fcbdf1f190b9ced7644f872fd02e64339dbe956)), closes [#285](https://github.com/testdriverai/mono/issues/285) [#288](https://github.com/testdriverai/mono/issues/288)
560
+ * Revert "Match Images Server Side (#268)" ([1a49198](https://github.com/testdriverai/mono/commit/1a49198b34293d8da8972b32d02bac94c1f1519b)), closes [#268](https://github.com/testdriverai/mono/issues/268)
561
+ * Revert "optimal fix for typing repeated chars (#235)" (#254) ([da773b3](https://github.com/testdriverai/mono/commit/da773b34055ccccf38993c23c4a8a86ccc5ccf74)), closes [#235](https://github.com/testdriverai/mono/issues/235) [#254](https://github.com/testdriverai/mono/issues/254)
562
+ * Revert "make sure things get summarized" ([38be3a3](https://github.com/testdriverai/mono/commit/38be3a3da13147760fc4e84b82bb5672343e9493))
563
+ * Revert "reverting to 137" ([07d9d48](https://github.com/testdriverai/mono/commit/07d9d48e2820119eacee6daafcf7dda89182f6d5))
564
+ * Revert "Add Api key support (#127)" ([f0dccb7](https://github.com/testdriverai/mono/commit/f0dccb72bb2ed35a4634f83f0e71b58bfe8516f5)), closes [#127](https://github.com/testdriverai/mono/issues/127)
565
+ * Revert "chrome extension survey page (#269)" ([6fe67d1](https://github.com/testdriverai/mono/commit/6fe67d18fa2e238f173c96f5f24af0d7d277ed0c)), closes [#269](https://github.com/testdriverai/mono/issues/269)
566
+ * Revert "Update "Always by your side" description" ([26893a9](https://github.com/testdriverai/mono/commit/26893a90008a099d51ff6955642e54eb917cf464))
567
+ * Revert "add correct reporting for env in vite" ([3fb0c8f](https://github.com/testdriverai/mono/commit/3fb0c8ff309beffa5f6a99cec645a2693f12030a))
568
+ ## 7.5.1 (2026-03-04)
569
+
570
+
571
+ ### Bug Fixes
572
+
573
+ * Ably direct connection provisioning + reconnect resilience ([39e778a](https://github.com/testdriverai/mono/commit/39e778ac73cc51caad076149cf1671b37973ccf6))
574
+ * Ably reconnect resilience - faster retry + suspended state handler ([c228202](https://github.com/testdriverai/mono/commit/c228202a6593b9431d0cc2d3514b0722bf526e8a))
575
+ * direction & amount not correctly sent to VM ([488a0d0](https://github.com/testdriverai/mono/commit/488a0d0921428e7673dddcf27b3238af8d88a7b1))
576
+ * Mouse scrolling in VM ([#291](https://github.com/testdriverai/mono/issues/291)) ([80ca55e](https://github.com/testdriverai/mono/commit/80ca55ec91ce00052bea81ce3033aad7c5216e47))
577
+ * OpenCV throws if needle is larger than the haystack ([#292](https://github.com/testdriverai/mono/issues/292)) ([652b8b1](https://github.com/testdriverai/mono/commit/652b8b109d1c45ee4becbfb923d33a15a1e0d443))
578
+ * provision Ably credentials via SSM for direct IP connections ([6ecdecf](https://github.com/testdriverai/mono/commit/6ecdecf766897a506cd20a3a03814eae48a168f8))
579
+ * reduce Sentry noise from PyAutoGUIClient unhandled data logs ([#122](https://github.com/testdriverai/mono/issues/122)) ([93b6d74](https://github.com/testdriverai/mono/commit/93b6d7485c1f6accc36d9efee10ea8b819c02d72))
580
+ * skip connectToSandboxDirect for E2B sandboxes (url already available from create) ([2a58865](https://github.com/testdriverai/mono/commit/2a58865ebc04b0299f7b92ed912aa78cfc2c8736))
581
+ * use team ID in E2B screenshot S3 path to match download-url access check ([0d1b6ee](https://github.com/testdriverai/mono/commit/0d1b6ee702008b31677c8f4e0858ee3f2acbbbaf))
582
+
583
+
584
+ ### Features
585
+
586
+ * Add elementSimilarity to selector cache ([#121](https://github.com/testdriverai/mono/issues/121)) ([ce39b2e](https://github.com/testdriverai/mono/commit/ce39b2e819e22d72f401e5762e45cef3478752d9))
587
+ * add type and confidence inputs to find endpoint ([#162](https://github.com/testdriverai/mono/issues/162)) ([283e699](https://github.com/testdriverai/mono/commit/283e699523ce362cf1e73086dbb99281336a5a23)), closes [#164](https://github.com/testdriverai/mono/issues/164)
588
+ * add type option to find(), move confidence to API, rename ocr to parse ([#640](https://github.com/testdriverai/mono/issues/640)) ([d98a94b](https://github.com/testdriverai/mono/commit/d98a94bd05c135c74d9fed2ebb72c709fc643337))
589
+ * add windows key ([59b96e8](https://github.com/testdriverai/mono/commit/59b96e8db4d2a29539d9dadc19431c70abe81e3e))
590
+ * **auth:** create team and start Stripe trial on new user signup ([1dcd2b4](https://github.com/testdriverai/mono/commit/1dcd2b408335515b09efdc8415248242c802393b))
591
+ * stream exec stdout in 16KB chunks to avoid Ably 64KB limit ([018f7b5](https://github.com/testdriverai/mono/commit/018f7b5380107818aa415714ee48a3656ebc2d76))
592
+ * Websocket connection health and request timeouts ([#109](https://github.com/testdriverai/mono/issues/109)) ([b7709f5](https://github.com/testdriverai/mono/commit/b7709f5dfaf3b051684f8728708cbc518754cb93))
593
+
594
+
595
+ ### Reverts
596
+
597
+ * Revert "Fix hanging node processes on Ctrl+C (#654)" (#683) ([5e68748](https://github.com/testdriverai/mono/commit/5e6874825c6718e006bbf84e2ba5edae57d173ac)), closes [#654](https://github.com/testdriverai/mono/issues/654) [#683](https://github.com/testdriverai/mono/issues/683)
598
+ * Revert "Ianjennings/fly (#72)" ([09e2417](https://github.com/testdriverai/mono/commit/09e241731537ff094e7096afc1b2e5d804353226)), closes [#72](https://github.com/testdriverai/mono/issues/72)
599
+ * Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/mono/commit/5037571440c33f8966104874c542c6c57a809510))
600
+ * Revert "Disable warm instances by setting pool size to 0 (#49)" (#51) ([c442ec5](https://github.com/testdriverai/mono/commit/c442ec52edab586be3ae8a3eadb34c32338cdea3)), closes [#49](https://github.com/testdriverai/mono/issues/49) [#51](https://github.com/testdriverai/mono/issues/51)
601
+ * Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/mono/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
602
+ * Revert "Change MAX_INSTANCES from 50 to 8 (#40)" (#41) ([1d4a3ca](https://github.com/testdriverai/mono/commit/1d4a3cacc5624b478f1e09b953cd56680e160292)), closes [#40](https://github.com/testdriverai/mono/issues/40) [#41](https://github.com/testdriverai/mono/issues/41)
603
+ * Revert "TDT-68 – Show User API Key on Team page" (#349) ([3a594aa](https://github.com/testdriverai/mono/commit/3a594aa73ef36f6b50585c72b9a770708a21c932)), closes [#349](https://github.com/testdriverai/mono/issues/349) [#348](https://github.com/testdriverai/mono/issues/348)
604
+ * Revert "TDT-129 – Always run postrun, even on failure (#368)" (#411) ([1be8c7c](https://github.com/testdriverai/mono/commit/1be8c7c1d22cff39d4a96261c31d8befb8376f47)), closes [#368](https://github.com/testdriverai/mono/issues/368) [#411](https://github.com/testdriverai/mono/issues/411)
605
+ * Revert "TDT-139 – Add hover-text-with-single-characters test" (#407) ([203529a](https://github.com/testdriverai/mono/commit/203529a434e21eb0ccc8037c6ce88f53a4a62f81)), closes [#407](https://github.com/testdriverai/mono/issues/407) [#381](https://github.com/testdriverai/mono/issues/381)
606
+ * Revert "Fix json-schema (#387)" (#389) ([4bddbba](https://github.com/testdriverai/mono/commit/4bddbbad49cd0e491f47e86fb5ecbf945f162bdc)), closes [#387](https://github.com/testdriverai/mono/issues/387) [#389](https://github.com/testdriverai/mono/issues/389)
607
+ * Revert "build with new version of testdriverai client" ([70bdb70](https://github.com/testdriverai/mono/commit/70bdb7033e99f8457205a126261dde295ec1b1f3))
608
+ * Revert "TDT-68-user-apiKey" (#347) ([ecc6057](https://github.com/testdriverai/mono/commit/ecc6057f719d92f8dc7a32e156fdc812f04a0d3b)), closes [#347](https://github.com/testdriverai/mono/issues/347) [#346](https://github.com/testdriverai/mono/issues/346)
609
+ * Revert "TD-2151 – throw if an env variable is missing (#285)" (#288) ([2fcbdf1](https://github.com/testdriverai/mono/commit/2fcbdf1f190b9ced7644f872fd02e64339dbe956)), closes [#285](https://github.com/testdriverai/mono/issues/285) [#288](https://github.com/testdriverai/mono/issues/288)
610
+ * Revert "Match Images Server Side (#268)" ([1a49198](https://github.com/testdriverai/mono/commit/1a49198b34293d8da8972b32d02bac94c1f1519b)), closes [#268](https://github.com/testdriverai/mono/issues/268)
611
+ * Revert "optimal fix for typing repeated chars (#235)" (#254) ([da773b3](https://github.com/testdriverai/mono/commit/da773b34055ccccf38993c23c4a8a86ccc5ccf74)), closes [#235](https://github.com/testdriverai/mono/issues/235) [#254](https://github.com/testdriverai/mono/issues/254)
612
+ * Revert "make sure things get summarized" ([38be3a3](https://github.com/testdriverai/mono/commit/38be3a3da13147760fc4e84b82bb5672343e9493))
613
+ * Revert "reverting to 137" ([07d9d48](https://github.com/testdriverai/mono/commit/07d9d48e2820119eacee6daafcf7dda89182f6d5))
614
+ * Revert "Add Api key support (#127)" ([f0dccb7](https://github.com/testdriverai/mono/commit/f0dccb72bb2ed35a4634f83f0e71b58bfe8516f5)), closes [#127](https://github.com/testdriverai/mono/issues/127)
615
+ * Revert "chrome extension survey page (#269)" ([6fe67d1](https://github.com/testdriverai/mono/commit/6fe67d18fa2e238f173c96f5f24af0d7d277ed0c)), closes [#269](https://github.com/testdriverai/mono/issues/269)
616
+ * Revert "Update "Always by your side" description" ([26893a9](https://github.com/testdriverai/mono/commit/26893a90008a099d51ff6955642e54eb917cf464))
617
+ * Revert "add correct reporting for env in vite" ([3fb0c8f](https://github.com/testdriverai/mono/commit/3fb0c8ff309beffa5f6a99cec645a2693f12030a))
618
+ ## [7.4.5](https://github.com/testdriverai/testdriverai/compare/v7.3.43...v7.4.5) (2026-02-27)
619
+
620
+
621
+
622
+ ## [7.3.44](https://github.com/testdriverai/testdriverai/compare/v7.3.43...v7.3.44) (2026-02-26)
623
+
624
+
625
+
626
+ ## [7.3.43](https://github.com/testdriverai/testdriverai/compare/v7.3.42...v7.3.43) (2026-02-25)
627
+
628
+
629
+
630
+ ## [7.3.42](https://github.com/testdriverai/testdriverai/compare/v7.3.41...v7.3.42) (2026-02-25)
631
+
632
+
633
+
634
+ ## [7.3.41](https://github.com/testdriverai/testdriverai/compare/v7.3.40...v7.3.41) (2026-02-25)
635
+
636
+
637
+
638
+ ## [7.3.40](https://github.com/testdriverai/testdriverai/compare/v7.3.39...v7.3.40) (2026-02-25)
639
+
640
+
641
+
642
+ ## [7.3.39](https://github.com/testdriverai/testdriverai/compare/v7.3.38...v7.3.39) (2026-02-25)
643
+
644
+
645
+
646
+ ## [7.3.38](https://github.com/testdriverai/testdriverai/compare/v7.3.37...v7.3.38) (2026-02-25)
647
+
648
+
649
+
650
+ ## [7.3.37](https://github.com/testdriverai/testdriverai/compare/v7.3.36...v7.3.37) (2026-02-24)
651
+
652
+
653
+
654
+ ## [7.3.36](https://github.com/testdriverai/testdriverai/compare/v7.3.35...v7.3.36) (2026-02-24)
655
+
656
+
657
+ ### Reverts
658
+
659
+ * Revert "Fix hanging node processes on Ctrl+C (#654)" (#683) ([5e68748](https://github.com/testdriverai/testdriverai/commit/5e6874825c6718e006bbf84e2ba5edae57d173ac)), closes [#654](https://github.com/testdriverai/testdriverai/issues/654) [#683](https://github.com/testdriverai/testdriverai/issues/683)
660
+
661
+
662
+
663
+ ## [7.3.35](https://github.com/testdriverai/testdriverai/compare/v7.3.34...v7.3.35) (2026-02-24)
664
+
665
+
666
+
667
+ ## [7.3.34](https://github.com/testdriverai/testdriverai/compare/v7.3.33...v7.3.34) (2026-02-24)
668
+
669
+
670
+
671
+ ## [7.3.33](https://github.com/testdriverai/testdriverai/compare/v7.3.32...v7.3.33) (2026-02-24)
672
+
673
+
674
+
675
+ ## [7.3.32](https://github.com/testdriverai/testdriverai/compare/v7.3.31...v7.3.32) (2026-02-20)
676
+
677
+
678
+
679
+ ## [7.3.31](https://github.com/testdriverai/testdriverai/compare/v7.3.30...v7.3.31) (2026-02-20)
680
+
681
+
682
+
683
+ ## [7.3.30](https://github.com/testdriverai/testdriverai/compare/v7.3.29...v7.3.30) (2026-02-20)
684
+
685
+
686
+
687
+ ## [7.3.29](https://github.com/testdriverai/testdriverai/compare/v7.3.28...v7.3.29) (2026-02-20)
688
+
689
+
690
+
691
+ ## [7.3.28](https://github.com/testdriverai/testdriverai/compare/v7.3.27...v7.3.28) (2026-02-20)
692
+
693
+
694
+
695
+ ## [7.3.27](https://github.com/testdriverai/testdriverai/compare/v7.3.25...v7.3.27) (2026-02-20)
696
+
697
+
698
+
699
+ ## [7.3.26](https://github.com/testdriverai/testdriverai/compare/v7.3.25...v7.3.26) (2026-02-20)
700
+
701
+
702
+
703
+ ## [7.3.25](https://github.com/testdriverai/testdriverai/compare/v7.3.24...v7.3.25) (2026-02-20)
704
+
705
+
706
+
707
+ ## [7.3.24](https://github.com/testdriverai/testdriverai/compare/v7.3.23...v7.3.24) (2026-02-20)
708
+
709
+
710
+
711
+ ## [7.3.23](https://github.com/testdriverai/testdriverai/compare/v7.3.22...v7.3.23) (2026-02-20)
712
+
713
+
714
+
715
+ ## [7.3.22](https://github.com/testdriverai/testdriverai/compare/v7.3.21...v7.3.22) (2026-02-19)
716
+
717
+
718
+
719
+ ## [7.3.21](https://github.com/testdriverai/testdriverai/compare/v7.3.20...v7.3.21) (2026-02-19)
720
+
721
+
722
+
723
+ ## [7.3.20](https://github.com/testdriverai/testdriverai/compare/v7.3.19...v7.3.20) (2026-02-19)
724
+
725
+
726
+
727
+ ## [7.3.19](https://github.com/testdriverai/testdriverai/compare/v7.3.17...v7.3.19) (2026-02-19)
728
+
729
+
730
+
731
+ ## [7.3.18](https://github.com/testdriverai/testdriverai/compare/v7.3.17...v7.3.18) (2026-02-19)
732
+
733
+
734
+
735
+ ## [7.3.17](https://github.com/testdriverai/testdriverai/compare/v7.3.16...v7.3.17) (2026-02-18)
736
+
737
+
738
+ ### Features
739
+
740
+ * add type option to find(), move confidence to API, rename ocr to parse ([#640](https://github.com/testdriverai/testdriverai/issues/640)) ([d98a94b](https://github.com/testdriverai/testdriverai/commit/d98a94bd05c135c74d9fed2ebb72c709fc643337))
741
+
742
+
743
+
744
+ ## [7.3.16](https://github.com/testdriverai/testdriverai/compare/v7.3.14...v7.3.16) (2026-02-18)
745
+
746
+
747
+
748
+ ## [7.3.15](https://github.com/testdriverai/testdriverai/compare/v7.3.14...v7.3.15) (2026-02-18)
749
+
750
+
751
+
752
+ ## [7.3.14](https://github.com/testdriverai/testdriverai/compare/v7.3.13...v7.3.14) (2026-02-17)
753
+
754
+
755
+
756
+ ## [7.3.13](https://github.com/testdriverai/testdriverai/compare/v7.3.12...v7.3.13) (2026-02-17)
757
+
758
+
759
+
760
+ ## [7.3.12](https://github.com/testdriverai/testdriverai/compare/v7.3.11...v7.3.12) (2026-02-17)
761
+
762
+
763
+
764
+ ## [7.3.11](https://github.com/testdriverai/testdriverai/compare/v7.3.10...v7.3.11) (2026-02-17)
765
+
766
+
767
+
768
+ ## [7.3.10](https://github.com/testdriverai/testdriverai/compare/v7.3.9...v7.3.10) (2026-02-16)
769
+
770
+
771
+
772
+ ## [7.3.9](https://github.com/testdriverai/testdriverai/compare/v7.3.8...v7.3.9) (2026-02-12)
773
+
774
+
775
+
776
+ ## [7.3.8](https://github.com/testdriverai/testdriverai/compare/v7.3.7...v7.3.8) (2026-02-12)
777
+
778
+
779
+
780
+ ## [7.3.7](https://github.com/testdriverai/testdriverai/compare/v7.3.6...v7.3.7) (2026-02-11)
781
+
782
+
783
+
784
+ ## [7.3.6](https://github.com/testdriverai/testdriverai/compare/v7.3.5...v7.3.6) (2026-02-10)
785
+
786
+
787
+
788
+ ## [7.3.5](https://github.com/testdriverai/testdriverai/compare/v7.3.4...v7.3.5) (2026-02-07)
789
+
790
+
791
+
792
+ ## [7.3.4](https://github.com/testdriverai/testdriverai/compare/v7.3.2...v7.3.4) (2026-02-06)
793
+
794
+
795
+
796
+ ## [7.3.3](https://github.com/testdriverai/testdriverai/compare/v7.3.2...v7.3.3) (2026-02-06)
797
+
798
+
799
+
800
+ ## [7.3.2](https://github.com/testdriverai/testdriverai/compare/v7.3.1...v7.3.2) (2026-02-05)
801
+
802
+
803
+
804
+ ## [7.3.1](https://github.com/testdriverai/testdriverai/compare/v7.2.92...v7.3.1) (2026-02-05)
805
+
806
+
807
+
808
+ ## [7.2.92](https://github.com/testdriverai/testdriverai/compare/v7.2.91...v7.2.92) (2026-02-04)
809
+
810
+
811
+
812
+ ## [7.2.91](https://github.com/testdriverai/testdriverai/compare/v7.2.90...v7.2.91) (2026-02-04)
813
+
814
+
815
+
816
+ ## [7.2.90](https://github.com/testdriverai/testdriverai/compare/v7.2.89...v7.2.90) (2026-02-04)
817
+
818
+
819
+
820
+ ## [7.2.89](https://github.com/testdriverai/testdriverai/compare/v7.2.88...v7.2.89) (2026-02-04)
821
+
822
+
823
+
824
+ ## [7.2.88](https://github.com/testdriverai/testdriverai/compare/v7.2.87...v7.2.88) (2026-02-04)
825
+
826
+
827
+
828
+ ## [7.2.87](https://github.com/testdriverai/testdriverai/compare/v7.2.86...v7.2.87) (2026-02-04)
829
+
830
+
831
+
832
+ ## [7.2.86](https://github.com/testdriverai/testdriverai/compare/v7.2.85...v7.2.86) (2026-02-04)
833
+
834
+
835
+
836
+ ## [7.2.85](https://github.com/testdriverai/testdriverai/compare/v7.2.84...v7.2.85) (2026-02-04)
837
+
838
+
839
+
840
+ ## [7.2.84](https://github.com/testdriverai/testdriverai/compare/v7.2.82...v7.2.84) (2026-02-04)
841
+
842
+
843
+
844
+ ## [7.2.83](https://github.com/testdriverai/testdriverai/compare/v7.2.82...v7.2.83) (2026-02-04)
845
+
846
+
847
+
848
+ ## [7.2.82](https://github.com/testdriverai/testdriverai/compare/v7.2.81...v7.2.82) (2026-02-04)
849
+
850
+
851
+
852
+ ## [7.2.81](https://github.com/testdriverai/testdriverai/compare/v7.2.80...v7.2.81) (2026-02-04)
853
+
854
+
855
+
856
+ ## [7.2.80](https://github.com/testdriverai/testdriverai/compare/v7.2.79...v7.2.80) (2026-02-04)
857
+
858
+
859
+
860
+ ## [7.2.79](https://github.com/testdriverai/testdriverai/compare/v7.2.78...v7.2.79) (2026-02-03)
861
+
862
+
863
+
864
+ ## [7.2.78](https://github.com/testdriverai/testdriverai/compare/v7.2.77...v7.2.78) (2026-02-03)
865
+
866
+
867
+
868
+ ## [7.2.77](https://github.com/testdriverai/testdriverai/compare/v7.2.76...v7.2.77) (2026-02-02)
869
+
870
+
871
+
872
+ ## [7.2.76](https://github.com/testdriverai/testdriverai/compare/v7.2.75...v7.2.76) (2026-02-02)
873
+
874
+
875
+
876
+ ## [7.2.75](https://github.com/testdriverai/testdriverai/compare/v7.2.74...v7.2.75) (2026-02-02)
877
+
878
+
879
+
880
+ ## [7.2.74](https://github.com/testdriverai/testdriverai/compare/v7.2.73...v7.2.74) (2026-02-02)
881
+
882
+
883
+
884
+ ## [7.2.73](https://github.com/testdriverai/testdriverai/compare/v7.2.72...v7.2.73) (2026-02-02)
885
+
886
+
887
+
888
+ ## [7.2.72](https://github.com/testdriverai/testdriverai/compare/v7.2.71...v7.2.72) (2026-02-02)
889
+
890
+
891
+
892
+ ## [7.2.71](https://github.com/testdriverai/testdriverai/compare/v7.2.70...v7.2.71) (2026-02-02)
893
+
894
+
895
+
896
+ ## [7.2.70](https://github.com/testdriverai/testdriverai/compare/v7.2.69...v7.2.70) (2026-02-02)
897
+
898
+
899
+
900
+ ## [7.2.69](https://github.com/testdriverai/testdriverai/compare/v7.2.68...v7.2.69) (2026-02-02)
901
+
902
+
903
+
904
+ ## [7.2.68](https://github.com/testdriverai/testdriverai/compare/v7.2.67...v7.2.68) (2026-02-02)
905
+
906
+
907
+
908
+ ## [7.2.67](https://github.com/testdriverai/testdriverai/compare/v7.2.66...v7.2.67) (2026-02-02)
909
+
910
+
911
+
912
+ ## [7.2.66](https://github.com/testdriverai/testdriverai/compare/v7.2.65...v7.2.66) (2026-02-02)
913
+
914
+
915
+
916
+ ## [7.2.65](https://github.com/testdriverai/testdriverai/compare/v7.2.64...v7.2.65) (2026-02-02)
917
+
918
+
919
+
920
+ ## [7.2.64](https://github.com/testdriverai/testdriverai/compare/v7.2.63...v7.2.64) (2026-02-02)
921
+
922
+
923
+
924
+ ## [7.2.63](https://github.com/testdriverai/testdriverai/compare/v7.2.62...v7.2.63) (2026-01-30)
925
+
926
+
927
+
928
+ ## [7.2.62](https://github.com/testdriverai/testdriverai/compare/v7.2.61...v7.2.62) (2026-01-30)
929
+
930
+
931
+
932
+ ## [7.2.61](https://github.com/testdriverai/testdriverai/compare/v7.2.60...v7.2.61) (2026-01-30)
933
+
934
+
935
+
936
+ ## [7.2.60](https://github.com/testdriverai/testdriverai/compare/v7.2.59...v7.2.60) (2026-01-27)
937
+
938
+
939
+
940
+ ## [7.2.59](https://github.com/testdriverai/testdriverai/compare/v7.2.58...v7.2.59) (2026-01-27)
941
+
942
+
943
+
944
+ ## [7.2.58](https://github.com/testdriverai/testdriverai/compare/v6.1.8...v7.2.58) (2026-01-27)
945
+
946
+
947
+ ### Reverts
948
+
949
+ * Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/testdriverai/commit/5037571440c33f8966104874c542c6c57a809510))
950
+ * Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/testdriverai/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
951
+
952
+
953
+