@dev-blinq/cucumber_client 1.0.1623-dev → 1.0.1624-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.
|
@@ -332,7 +332,7 @@ export class BVTRecorder {
|
|
|
332
332
|
this.workspaceService = new PublishService(this.TOKEN);
|
|
333
333
|
this.pageSet = new Set();
|
|
334
334
|
this.lastKnownUrlPath = "";
|
|
335
|
-
this.world = { attach: () => {
|
|
335
|
+
this.world = { attach: () => {} };
|
|
336
336
|
this.shouldTakeScreenshot = true;
|
|
337
337
|
this.watcher = null;
|
|
338
338
|
this.networkEventsFolder = path.join(tmpdir(), "blinq_network_events");
|
|
@@ -475,7 +475,7 @@ export class BVTRecorder {
|
|
|
475
475
|
}
|
|
476
476
|
|
|
477
477
|
// this.stepRunner.setRemoteDebugPort(this.#remoteDebuggerPort);
|
|
478
|
-
this.world = { attach: () => {
|
|
478
|
+
this.world = { attach: () => {} };
|
|
479
479
|
|
|
480
480
|
const ai_config_file = path.join(this.projectDir, "ai_config.json");
|
|
481
481
|
let ai_config = {};
|
|
@@ -977,7 +977,7 @@ export class BVTRecorder {
|
|
|
977
977
|
}
|
|
978
978
|
async closeBrowser() {
|
|
979
979
|
delete process.env.TEMP_RUN;
|
|
980
|
-
await this.watcher.close().then(() => {
|
|
980
|
+
await this.watcher.close().then(() => {});
|
|
981
981
|
this.watcher = null;
|
|
982
982
|
this.previousIndex = null;
|
|
983
983
|
this.previousHistoryLength = null;
|
|
@@ -1574,7 +1574,7 @@ export class BVTRecorder {
|
|
|
1574
1574
|
await page
|
|
1575
1575
|
.context()
|
|
1576
1576
|
.grantPermissions(["clipboard-read", "clipboard-write"])
|
|
1577
|
-
.catch(() => {
|
|
1577
|
+
.catch(() => {});
|
|
1578
1578
|
await page.evaluate(async (clipboardPayload) => {
|
|
1579
1579
|
const toArrayBuffer = (base64) => {
|
|
1580
1580
|
if (!base64) {
|