testdriverai 7.6.0-test.4 → 7.6.0-test.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## 7.6.0-test.6 (2026-03-13)
2
+
3
+ ## 🔧 Maintenance
4
+
5
+ - Improve CI/CD pipeline reliability by eliminating race conditions in release promotion workflows [c21f708d]
6
+ - Fix VNC URL display in continuous integration environment [API] [c21f708d]
7
+
8
+ ## 7.6.0-test.5 (2026-03-12)
9
+
10
+ ## 🔧 Maintenance
11
+
12
+ - Update SDK channel configuration [SDK] (274fff79)
13
+
1
14
  ## 7.6.0-test.4 (2026-03-12)
2
15
 
3
16
  ## 🔧 Maintenance
@@ -192,16 +192,8 @@ class BaseCommand extends Command {
192
192
  this.agent.emitter.on("show-window", async (url) => {
193
193
  console.log("");
194
194
  console.log(`Live test execution: `);
195
- if (this.agent.config.CI) {
196
- let u = new URL(url);
197
- try {
198
- u = JSON.parse(u.searchParams.get("data"));
199
- console.log(`${u.url}&view_only=true`);
200
- } catch {
201
- console.log(url);
202
- }
203
- } else {
204
- console.log(url);
195
+ console.log(url);
196
+ if (!this.agent.config.CI) {
205
197
  await openBrowser(url);
206
198
  }
207
199
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.6.0-test.4",
3
+ "version": "7.6.0-test.6",
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",
package/sdk.js CHANGED
@@ -3948,18 +3948,8 @@ CAPTCHA_SOLVER_EOF`,
3948
3948
  if (this.loggingEnabled) {
3949
3949
  console.log("");
3950
3950
  console.log("🔗 Live test execution:");
3951
- if (this.config.CI) {
3952
- // In CI mode, just print the view-only URL
3953
- const u = new URL(url);
3954
- const encodedData = u.searchParams.get("data");
3955
- // Data is base64 encoded, not URL encoded
3956
- const data = JSON.parse(
3957
- Buffer.from(encodedData, "base64").toString(),
3958
- );
3959
- console.log(`${data.url}&view_only=true`);
3960
- } else {
3961
- // In local mode, print the URL and open it in the browser
3962
- console.log(url);
3951
+ console.log(url);
3952
+ if (!this.config.CI) {
3963
3953
  await this._openBrowser(url);
3964
3954
  }
3965
3955
  }