@testdriverai/agent 7.9.75-test → 7.9.76-test

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,7 +29,7 @@ const testdriver = new TestDriver(apiKey, options)
29
29
  </ParamField>
30
30
 
31
31
  <ParamField path="resolution" type="string" default="1366x768">
32
- Screen resolution for the sandbox (e.g., `'1920x1080'`, `'1366x768'`)
32
+ Screen resolution for the sandbox (e.g., `'1920x1080'`, `'1366x768'`). Custom resolutions are only available on Enterprise plans.
33
33
  </ParamField>
34
34
 
35
35
  <ParamField path="apiRoot" type="string">
@@ -283,9 +283,9 @@ const testdriver = TestDriver(context, {
283
283
  });
284
284
  ```
285
285
 
286
- ### Reconnecting to Existing Sandbox
286
+ ### Connecting to an Existing Sandbox
287
287
 
288
- Speed up test development by reconnecting to an existing sandbox instead of starting fresh each time. This lets you iterate quickly on failing steps without re-running the entire test from the beginning.
288
+ Speed up test development by connecting to an existing sandbox instead of starting fresh each time. This lets you iterate quickly on failing steps without re-running the entire test from the beginning.
289
289
 
290
290
  Split your test into two files: one for known-good steps that set up the desired state, and another for work-in-progress steps you want to debug.
291
291
 
@@ -298,8 +298,10 @@ const testdriver = TestDriver(context, {
298
298
  ```javascript work-in-progress.test.mjs
299
299
  // Second test file: experiment.test.mjs (run within keepAlive window)
300
300
  const testdriver = TestDriver(context, {
301
- reconnect: true, // Reconnect to existing sandbox
301
+ keepAlive: 60000,
302
302
  });
303
+
304
+ await testdriver.connect({ sandboxId: "sandbox-abc123" });
303
305
  ```
304
306
 
305
307
  Then, you can run both tests in sequence:
@@ -315,5 +317,5 @@ vitest run work-in-progress.test.mjs
315
317
  ```
316
318
 
317
319
  <Warning>
318
- Reconnect only works if run within the `keepAlive` window of the previous test.
320
+ Connecting to the same machine only works if run within the `keepAlive` window of the previous test.
319
321
  </Warning>
@@ -33,7 +33,7 @@ describe("My Test", () => {
33
33
  | Option | Type | Default | Description |
34
34
  |--------|------|---------|-------------|
35
35
  | `os` | string | `"linux"` | Operating system |
36
- | `resolution` | string | `"1366x768"` | Screen resolution |
36
+ | `resolution` | string | `"1366x768"` | Screen resolution (Enterprise only) |
37
37
  | `e2bTemplateId` | string | — | Custom E2B template ID (see [Self-Hosted](/v7/self-hosted)) |
38
38
  | `keepAlive` | number | `60000` | Ms to keep VM alive after disconnect |
39
39
  | `reconnect` | boolean | `false` | Reconnect to last used sandbox |
@@ -67,7 +67,7 @@ Windows sandboxes use EC2 instances and take longer to boot than Linux (E2B) san
67
67
  | Option | Type | Default | Description |
68
68
  |--------|------|---------|-------------|
69
69
  | `os` | string | — | Set to `"windows"` |
70
- | `resolution` | string | `"1366x768"` | Screen resolution |
70
+ | `resolution` | string | `"1366x768"` | Screen resolution (Enterprise only) |
71
71
  | `sandboxAmi` | string | — | Custom AMI ID (self-hosted) |
72
72
  | `sandboxInstance` | string | — | EC2 instance type (self-hosted) |
73
73
  | `keepAlive` | number | `60000` | Ms to keep VM alive after disconnect |
@@ -102,35 +102,37 @@ await testdriver.provision.chrome({ url: "https://example.com" });
102
102
 
103
103
  When this test finishes, the sandbox stays running for 30 minutes instead of being terminated immediately.
104
104
 
105
- ### Step 2 — Reconnect in subsequent runs
105
+ ### Step 2 — Connect in subsequent runs
106
106
 
107
107
  ```javascript
108
108
  // second.test.mjs
109
109
  const testdriver = TestDriver(context, {
110
110
  os: "windows",
111
- reconnect: true, // reads last sandbox ID from disk, skips provisioning
111
+ keepAlive: 30 * 60 * 1000,
112
112
  });
113
113
 
114
+ await testdriver.connect({ sandboxId: "sandbox-abc123" });
115
+
114
116
  // provision.chrome() is automatically skipped — Chrome is already open
115
117
  await testdriver.find("Sign In button").click();
116
118
  ```
117
119
 
118
- When `reconnect: true` is set:
119
- - The SDK reads the last sandbox ID from a local file via `getLastSandboxId()`
120
- - All `provision.*` calls are silently skipped since the application is already running
121
- - An error is thrown if no previous sandbox ID is found
120
+ When connecting to an existing sandbox ID:
121
+ - You reuse a specific running machine directly
122
+ - You can continue from the app state created in an earlier test run
123
+ - You should run within the previous test's `keepAlive` window
122
124
 
123
125
  <Tip>
124
- You can also supply a sandbox ID directly: `connect({ sandboxId: "sandbox-abc123" })`. Use `testdriver.getLastSandboxId()` to retrieve the ID of the last sandbox for scripting purposes.
126
+ You can also supply a sandbox ID directly: `await testdriver.connect({ sandboxId: "sandbox-abc123" })`. Use `testdriver.getLastSandboxId()` to retrieve the ID of the last sandbox for scripting purposes.
125
127
  </Tip>
126
128
 
127
129
  ### How `keepAlive` works
128
130
 
129
- `keepAlive` is a duration in milliseconds. After the SDK disconnects, the server keeps the VM running for that long before terminating it. The default is `60000` (1 minute). Set it to `0` to terminate immediately on disconnect.
131
+ `keepAlive` is a duration in milliseconds. After the SDK disconnects, the server keeps the VM running for that long before terminating it. The default is `60000` (1 minute). Note: `keepAlive: 0` currently falls back to the default disconnect grace period rather than terminating immediately, so use a positive duration when you want to control the grace window explicitly.
130
132
 
131
133
  ```javascript
132
134
  const testdriver = TestDriver(context, {
133
- keepAlive: 0, // terminate immediately
135
+ keepAlive: 0, // currently uses the default 1 minute grace period
134
136
  // keepAlive: 60000, // default — 1 minute
135
137
  // keepAlive: 600000, // 10 minutes
136
138
  // keepAlive: 3600000, // 1 hour
@@ -14,10 +14,6 @@ Access provision methods via `testdriver.provision.*`:
14
14
  await testdriver.provision.chrome({ url: 'https://example.com' });
15
15
  ```
16
16
 
17
- <Note>
18
- When `reconnect: true` is set on the client, **all provision methods are skipped** since the application is assumed to already be running.
19
- </Note>
20
-
21
17
  ## Methods
22
18
 
23
19
  ### chrome()
@@ -234,22 +230,6 @@ await testdriver.provision.dashcam({
234
230
  });
235
231
  ```
236
232
 
237
- ## Reconnect Behavior
238
-
239
- When `reconnect: true` is set on the client, all provision methods are wrapped in a Proxy that intercepts calls and skips them silently. This is because when reconnecting to an existing sandbox, the applications are already running.
240
-
241
- ```javascript
242
- const testdriver = new TestDriver({
243
- reconnect: true,
244
- });
245
-
246
- await testdriver.ready();
247
-
248
- // These calls are silently skipped:
249
- await testdriver.provision.chrome({ url: 'https://example.com' });
250
- await testdriver.provision.dashcam();
251
- ```
252
-
253
233
  ## Types
254
234
 
255
235
  ```typescript
@@ -32,7 +32,7 @@ await testdriver.scroll(direction, options)
32
32
  ## Parameters
33
33
 
34
34
  <ParamField path="direction" type="string" default="down">
35
- Direction to scroll: `'up'`, `'down'`, `'left'`, `'right'`
35
+ Direction to scroll: `'up'`, `'down'`
36
36
  </ParamField>
37
37
 
38
38
  <ParamField path="options" type="object">
@@ -2,18 +2,18 @@
2
2
  "$schema": "./examples-manifest.schema.json",
3
3
  "examples": {
4
4
  "assert.test.mjs": {
5
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93da9094c8bd9eea407ce",
6
- "replayUrl": "https://console-test.testdriver.ai/replay/69f9468d094c8bd9eea40805?share=NDGD1WTzdeKMLU4NDbORg",
7
- "embedUrl": "https://console-test.testdriver.ai/replay/69f9468d094c8bd9eea40805?share=NDGD1WTzdeKMLU4NDbORg&embed=true",
8
- "lastUpdated": "2026-05-05T01:23:31.565Z"
5
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a0127f0e8dc0c5b592211bd",
6
+ "replayUrl": "https://console-test.testdriver.ai/replay/6a012f3d7979b554a2367fde?share=eGZW28XfsyEW6Oq9hbzg0w",
7
+ "embedUrl": "https://console-test.testdriver.ai/replay/6a012f3d7979b554a2367fde?share=eGZW28XfsyEW6Oq9hbzg0w&embed=true",
8
+ "lastUpdated": "2026-05-11T01:22:10.860Z"
9
9
  },
10
10
  "drag-and-drop.test.mjs": {
11
11
  "url": "https://console.testdriver.ai/runs/69a62b3aaa712ecd3dea730a/69a62b42fc0ac3cc632a918b",
12
12
  "lastUpdated": "2026-03-03T00:32:25.275Z"
13
13
  },
14
14
  "exec-pwsh.test.mjs": {
15
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93cbe094c8bd9eea407c2",
16
- "lastUpdated": "2026-05-05T00:55:56.594Z"
15
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012711e8dc0c5b5922116d",
16
+ "lastUpdated": "2026-05-11T01:00:52.983Z"
17
17
  },
18
18
  "match-image.test.mjs": {
19
19
  "url": "https://console-test.testdriver.ai/runs/69c8738614b73310c7839412/69c8738c14b73310c783941d",
@@ -24,92 +24,92 @@
24
24
  "lastUpdated": "2026-03-03T00:32:25.282Z"
25
25
  },
26
26
  "hover-text-with-description.test.mjs": {
27
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93cd6094c8bd9eea407c3",
28
- "lastUpdated": "2026-05-05T00:41:58.345Z"
27
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012727e8dc0c5b5922118d",
28
+ "lastUpdated": "2026-05-11T00:47:35.617Z"
29
29
  },
30
30
  "windows-installer.test.mjs": {
31
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93d05094c8bd9eea407c6",
32
- "lastUpdated": "2026-05-05T00:57:09.900Z"
31
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012754e8dc0c5b592211a6",
32
+ "lastUpdated": "2026-05-11T01:01:59.830Z"
33
33
  },
34
34
  "exec-output.test.mjs": {
35
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93d07094c8bd9eea407c7",
36
- "lastUpdated": "2026-05-05T00:57:11.904Z"
35
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012755e8dc0c5b592211a7",
36
+ "lastUpdated": "2026-05-11T01:02:01.244Z"
37
37
  },
38
38
  "chrome-extension.test.mjs": {
39
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93cbc094c8bd9eea407c1",
40
- "lastUpdated": "2026-05-05T00:48:43.775Z"
39
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a01270fe8dc0c5b59221164",
40
+ "lastUpdated": "2026-05-11T00:53:59.762Z"
41
41
  },
42
42
  "launch-vscode-linux.test.mjs": {
43
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93cee094c8bd9eea407c4",
44
- "replayUrl": "https://console-test.testdriver.ai/replay/69f9430f094c8bd9eea407e1?share=LOaxOPwPaReJq6KccMFCw",
45
- "embedUrl": "https://console-test.testdriver.ai/replay/69f9430f094c8bd9eea407e1?share=LOaxOPwPaReJq6KccMFCw&embed=true",
46
- "lastUpdated": "2026-05-05T01:08:37.102Z"
43
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012748e8dc0c5b592211a4",
44
+ "replayUrl": "https://console-test.testdriver.ai/replay/6a012cec7979b554a2367fce?share=7neNaBPydjs409QFnQ",
45
+ "embedUrl": "https://console-test.testdriver.ai/replay/6a012cec7979b554a2367fce?share=7neNaBPydjs409QFnQ&embed=true",
46
+ "lastUpdated": "2026-05-11T01:12:18.729Z"
47
47
  },
48
48
  "hover-image.test.mjs": {
49
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93d20094c8bd9eea407c8",
50
- "lastUpdated": "2026-05-05T00:50:22.846Z"
49
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a01276ce8dc0c5b592211ad",
50
+ "lastUpdated": "2026-05-11T00:55:30.730Z"
51
51
  },
52
52
  "installer.test.mjs": {
53
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93d40094c8bd9eea407c9",
54
- "lastUpdated": "2026-05-05T00:43:34.373Z"
53
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a01278be8dc0c5b592211b4",
54
+ "lastUpdated": "2026-05-11T00:49:05.399Z"
55
55
  },
56
56
  "type.test.mjs": {
57
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93d7a094c8bd9eea407cc",
58
- "lastUpdated": "2026-05-05T00:51:51.359Z"
57
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a0127c3e8dc0c5b592211bb",
58
+ "lastUpdated": "2026-05-11T00:56:59.972Z"
59
59
  },
60
60
  "press-keys.test.mjs": {
61
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93d92094c8bd9eea407cd",
62
- "replayUrl": "https://console-test.testdriver.ai/replay/69f94630094c8bd9eea40801?share=e2LGqXsWT5vVYMegR8xb6Q",
63
- "embedUrl": "https://console-test.testdriver.ai/replay/69f94630094c8bd9eea40801?share=e2LGqXsWT5vVYMegR8xb6Q&embed=true",
64
- "lastUpdated": "2026-05-05T01:21:58.597Z"
61
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a0127d8e8dc0c5b592211bc",
62
+ "replayUrl": "https://console-test.testdriver.ai/replay/6a012efb7979b554a2367fdc?share=qXAjPmtzyFqP0gsGbgfrTg",
63
+ "embedUrl": "https://console-test.testdriver.ai/replay/6a012efb7979b554a2367fdc?share=qXAjPmtzyFqP0gsGbgfrTg&embed=true",
64
+ "lastUpdated": "2026-05-11T01:21:05.708Z"
65
65
  },
66
66
  "scroll-keyboard.test.mjs": {
67
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93dd9094c8bd9eea407d0",
68
- "lastUpdated": "2026-05-05T01:00:40.099Z"
67
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a01281de8dc0c5b592211bf",
68
+ "lastUpdated": "2026-05-11T01:05:25.642Z"
69
69
  },
70
70
  "scroll.test.mjs": {
71
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93df7094c8bd9eea407d4",
72
- "replayUrl": "https://console-test.testdriver.ai/replay/69f947cb094c8bd9eea40811?share=p1dGgEGTyXzpHQQ4pciUfA",
73
- "embedUrl": "https://console-test.testdriver.ai/replay/69f947cb094c8bd9eea40811?share=p1dGgEGTyXzpHQQ4pciUfA&embed=true",
74
- "lastUpdated": "2026-05-05T01:28:49.210Z"
71
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012838e8dc0c5b592211c3",
72
+ "replayUrl": "https://console-test.testdriver.ai/replay/6a01305f7979b554a2367fe4?share=q3Se7JkeU2nVN2W0xAHpyw",
73
+ "embedUrl": "https://console-test.testdriver.ai/replay/6a01305f7979b554a2367fe4?share=q3Se7JkeU2nVN2W0xAHpyw&embed=true",
74
+ "lastUpdated": "2026-05-11T01:27:00.886Z"
75
75
  },
76
76
  "scroll-until-image.test.mjs": {
77
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93ddb094c8bd9eea407d1",
78
- "lastUpdated": "2026-05-05T00:46:20.123Z"
77
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a01281fe8dc0c5b592211c0",
78
+ "lastUpdated": "2026-05-11T00:51:43.379Z"
79
79
  },
80
80
  "prompt.test.mjs": {
81
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93ddd094c8bd9eea407d2",
82
- "lastUpdated": "2026-05-05T01:00:44.935Z"
81
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012820e8dc0c5b592211c1",
82
+ "lastUpdated": "2026-05-11T01:05:28.674Z"
83
83
  },
84
84
  "focus-window.test.mjs": {
85
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93ddf094c8bd9eea407d3",
86
- "lastUpdated": "2026-05-05T00:46:24.315Z"
85
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012822e8dc0c5b592211c2",
86
+ "lastUpdated": "2026-05-11T00:51:46.302Z"
87
87
  },
88
88
  "captcha-api.test.mjs": {
89
89
  "url": "https://console.testdriver.ai/runs/698f7df69e27ce1528d7d087/698f7fb0d3b320ad547d9d44",
90
90
  "lastUpdated": "2026-02-13T19:55:05.951Z"
91
91
  },
92
92
  "element-not-found.test.mjs": {
93
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93e0f094c8bd9eea407d5",
94
- "lastUpdated": "2026-05-05T01:01:35.457Z"
93
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a01284ee8dc0c5b592211c4",
94
+ "lastUpdated": "2026-05-11T01:06:16.966Z"
95
95
  },
96
96
  "formatted-logging.test.mjs": {
97
97
  "url": "https://console-test.testdriver.ai/runs/69c8738614b73310c7839412/69c873a714b73310c7839450",
98
98
  "lastUpdated": "2026-03-29T00:36:10.628Z"
99
99
  },
100
100
  "hover-text.test.mjs": {
101
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93e3e094c8bd9eea407d7",
102
- "lastUpdated": "2026-05-05T00:47:57.895Z"
101
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a01287be8dc0c5b592211c6",
102
+ "lastUpdated": "2026-05-11T00:53:14.884Z"
103
103
  },
104
104
  "no-provision.test.mjs": {
105
105
  "url": "https://console.testdriver.ai/runs/69a62b3aaa712ecd3dea730a/69a62b7706a177a05bccd1cf",
106
106
  "lastUpdated": "2026-03-03T00:32:25.279Z"
107
107
  },
108
108
  "ai.test.mjs": {
109
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93e27094c8bd9eea407d6",
110
- "replayUrl": "https://console-test.testdriver.ai/replay/69f948cc094c8bd9eea40819?share=wR46veaWTRzdv7n5COqDQ",
111
- "embedUrl": "https://console-test.testdriver.ai/replay/69f948cc094c8bd9eea40819?share=wR46veaWTRzdv7n5COqDQ&embed=true",
112
- "lastUpdated": "2026-05-05T01:33:07.450Z"
109
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012865e8dc0c5b592211c5",
110
+ "replayUrl": "https://console-test.testdriver.ai/replay/6a01319a7979b554a2367fea?share=Ki50QL6E5CDghhFjH6WGEw",
111
+ "embedUrl": "https://console-test.testdriver.ai/replay/6a01319a7979b554a2367fea?share=Ki50QL6E5CDghhFjH6WGEw&embed=true",
112
+ "lastUpdated": "2026-05-11T01:32:16.393Z"
113
113
  },
114
114
  "popup-loading.test.mjs": {
115
115
  "url": "https://console.testdriver.ai/runs/698bc89f7140c3fa7daaca8d/698bca7f7140c3fa7daacbf7",
@@ -144,12 +144,12 @@
144
144
  "lastUpdated": "2026-02-13T19:55:05.953Z"
145
145
  },
146
146
  "findall-coffee-icons.test.mjs": {
147
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93dc1094c8bd9eea407cf",
148
- "lastUpdated": "2026-05-05T00:53:01.098Z"
147
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012806e8dc0c5b592211be",
148
+ "lastUpdated": "2026-05-11T00:58:06.343Z"
149
149
  },
150
150
  "parse.test.mjs": {
151
- "url": "https://console-test.testdriver.ai/runs/69f93ca4ff294cd8345b5496/69f93e56094c8bd9eea407d8",
152
- "lastUpdated": "2026-05-05T01:02:47.038Z"
151
+ "url": "https://console-test.testdriver.ai/runs/6a0126f7e8dc0c5b59221142/6a012890e8dc0c5b592211c7",
152
+ "lastUpdated": "2026-05-11T01:07:23.459Z"
153
153
  },
154
154
  "flake-diffthreshold-001.test.mjs": {
155
155
  "url": "https://console.testdriver.ai/runs/69a62b3aaa712ecd3dea730a/69a62bcafc0ac3cc632a91aa",
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* ai.test.mjs output */}
14
14
  <iframe
15
- src="https://console-test.testdriver.ai/replay/69f948cc094c8bd9eea40819?share=wR46veaWTRzdv7n5COqDQ&embed=true"
15
+ src="https://console-test.testdriver.ai/replay/6a01319a7979b554a2367fea?share=Ki50QL6E5CDghhFjH6WGEw&embed=true"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* assert.test.mjs output */}
14
14
  <iframe
15
- src="https://console-test.testdriver.ai/replay/69f9468d094c8bd9eea40805?share=NDGD1WTzdeKMLU4NDbORg&embed=true"
15
+ src="https://console-test.testdriver.ai/replay/6a012f3d7979b554a2367fde?share=eGZW28XfsyEW6Oq9hbzg0w&embed=true"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* chrome-extension.test.mjs output */}
14
14
  <iframe
15
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93cbc094c8bd9eea407c1/replay"
15
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a01270fe8dc0c5b59221164/replay"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* element-not-found.test.mjs output */}
14
14
  <iframe
15
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93e0f094c8bd9eea407d5/replay"
15
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a01284ee8dc0c5b592211c4/replay"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -18,7 +18,7 @@ Watch this test execute in a real sandbox environment:
18
18
 
19
19
  {/* findall-coffee-icons.test.mjs output */}
20
20
  <iframe
21
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93dc1094c8bd9eea407cf/replay"
21
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a012806e8dc0c5b592211be/replay"
22
22
  width="100%"
23
23
  height="600"
24
24
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* hover-image.test.mjs output */}
14
14
  <iframe
15
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93d20094c8bd9eea407c8/replay"
15
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a01276ce8dc0c5b592211ad/replay"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -18,7 +18,7 @@ Watch this test execute in a real sandbox environment:
18
18
 
19
19
  {/* hover-text-with-description.test.mjs output */}
20
20
  <iframe
21
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93cd6094c8bd9eea407c3/replay"
21
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a012727e8dc0c5b5922118d/replay"
22
22
  width="100%"
23
23
  height="600"
24
24
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* hover-text.test.mjs output */}
14
14
  <iframe
15
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93e3e094c8bd9eea407d7/replay"
15
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a01287be8dc0c5b592211c6/replay"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* installer.test.mjs output */}
14
14
  <iframe
15
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93d40094c8bd9eea407c9/replay"
15
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a01278be8dc0c5b592211b4/replay"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* launch-vscode-linux.test.mjs output */}
14
14
  <iframe
15
- src="https://console-test.testdriver.ai/replay/69f9430f094c8bd9eea407e1?share=LOaxOPwPaReJq6KccMFCw&embed=true"
15
+ src="https://console-test.testdriver.ai/replay/6a012cec7979b554a2367fce?share=7neNaBPydjs409QFnQ&embed=true"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -18,7 +18,7 @@ Watch this test execute in a real sandbox environment:
18
18
 
19
19
  {/* parse.test.mjs output */}
20
20
  <iframe
21
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93e56094c8bd9eea407d8/replay"
21
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a012890e8dc0c5b592211c7/replay"
22
22
  width="100%"
23
23
  height="600"
24
24
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* press-keys.test.mjs output */}
14
14
  <iframe
15
- src="https://console-test.testdriver.ai/replay/69f94630094c8bd9eea40801?share=e2LGqXsWT5vVYMegR8xb6Q&embed=true"
15
+ src="https://console-test.testdriver.ai/replay/6a012efb7979b554a2367fdc?share=qXAjPmtzyFqP0gsGbgfrTg&embed=true"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* scroll-keyboard.test.mjs output */}
14
14
  <iframe
15
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93dd9094c8bd9eea407d0/replay"
15
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a01281de8dc0c5b592211bf/replay"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* scroll.test.mjs output */}
14
14
  <iframe
15
- src="https://console-test.testdriver.ai/replay/69f947cb094c8bd9eea40811?share=p1dGgEGTyXzpHQQ4pciUfA&embed=true"
15
+ src="https://console-test.testdriver.ai/replay/6a01305f7979b554a2367fe4?share=q3Se7JkeU2nVN2W0xAHpyw&embed=true"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
@@ -12,7 +12,7 @@ Watch this test execute in a real sandbox environment:
12
12
 
13
13
  {/* type.test.mjs output */}
14
14
  <iframe
15
- src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/69f93d7a094c8bd9eea407cc/replay"
15
+ src="https://api-test.testdriver.ai/api/v1/testdriver/testcase/6a0127c3e8dc0c5b592211bb/replay"
16
16
  width="100%"
17
17
  height="390"
18
18
  style={{ border: "1px solid #333", borderRadius: "8px" }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testdriverai/agent",
3
- "version": "7.9.75-test",
3
+ "version": "7.9.76-test",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",