@dev-blinq/cucumber_client 1.0.1205-stage → 1.0.1206-stage
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.
|
@@ -213,9 +213,10 @@ export class BVTRecorder {
|
|
|
213
213
|
},
|
|
214
214
|
});
|
|
215
215
|
this.pageSet = new Set();
|
|
216
|
+
this.pageMetaDataSet = new Set();
|
|
216
217
|
this.lastKnownUrlPath = "";
|
|
217
218
|
// TODO: what is world?
|
|
218
|
-
this.world = { attach: () => {} };
|
|
219
|
+
this.world = { attach: () => { } };
|
|
219
220
|
this.shouldTakeScreenshot = true;
|
|
220
221
|
this.watcher = null;
|
|
221
222
|
}
|
|
@@ -323,7 +324,7 @@ export class BVTRecorder {
|
|
|
323
324
|
process.env.CDP_LISTEN_PORT = this.#remoteDebuggerPort;
|
|
324
325
|
|
|
325
326
|
this.stepRunner.setRemoteDebugPort(this.#remoteDebuggerPort);
|
|
326
|
-
this.world = { attach: () => {} };
|
|
327
|
+
this.world = { attach: () => { } };
|
|
327
328
|
|
|
328
329
|
const ai_config_file = path.join(this.projectDir, "ai_config.json");
|
|
329
330
|
let ai_config = {};
|
|
@@ -731,7 +732,7 @@ export class BVTRecorder {
|
|
|
731
732
|
}
|
|
732
733
|
async closeBrowser() {
|
|
733
734
|
delete process.env.TEMP_RUN;
|
|
734
|
-
await this.watcher.close().then(() => {});
|
|
735
|
+
await this.watcher.close().then(() => { });
|
|
735
736
|
this.watcher = null;
|
|
736
737
|
this.previousIndex = null;
|
|
737
738
|
this.previousHistoryLength = null;
|