@dev-blinq/cucumber_client 1.0.1628-dev → 1.0.1629-dev
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.
|
@@ -381,7 +381,9 @@ export class RemoteBrowserService extends EventEmitter {
|
|
|
381
381
|
pageInfo.cdpTargetId = currentCdpId; // Update our internal reference
|
|
382
382
|
}
|
|
383
383
|
// Manually construct the WebSocket URL
|
|
384
|
-
const wsDebuggerUrl = currentCdpId
|
|
384
|
+
const wsDebuggerUrl = currentCdpId
|
|
385
|
+
? `${this.wsUrlBase}${currentCdpId}`
|
|
386
|
+
: (pageInfo.lastKnownWsDebuggerUrl ?? "");
|
|
385
387
|
if (!wsDebuggerUrl) {
|
|
386
388
|
this.log("⚠️ Could not get CDP ID, wsDebuggerUrl will be empty", { stableTabId });
|
|
387
389
|
}
|