@dev-blinq/cucumber_client 1.0.1563-dev → 1.0.1564-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.
|
@@ -1345,7 +1345,7 @@ export class BVTRecorder {
|
|
|
1345
1345
|
}
|
|
1346
1346
|
}
|
|
1347
1347
|
|
|
1348
|
-
async createTab(
|
|
1348
|
+
async createTab(url) {
|
|
1349
1349
|
try {
|
|
1350
1350
|
await this.browserEmitter?.createTab(url);
|
|
1351
1351
|
} catch (error) {
|
|
@@ -1357,7 +1357,7 @@ export class BVTRecorder {
|
|
|
1357
1357
|
}
|
|
1358
1358
|
}
|
|
1359
1359
|
|
|
1360
|
-
async closeTab(
|
|
1360
|
+
async closeTab(pageId) {
|
|
1361
1361
|
try {
|
|
1362
1362
|
await this.browserEmitter?.closeTab(pageId);
|
|
1363
1363
|
} catch (error) {
|
|
@@ -1369,7 +1369,7 @@ export class BVTRecorder {
|
|
|
1369
1369
|
}
|
|
1370
1370
|
}
|
|
1371
1371
|
|
|
1372
|
-
async selectTab(
|
|
1372
|
+
async selectTab(pageId) {
|
|
1373
1373
|
try {
|
|
1374
1374
|
await this.browserEmitter?.selectTab(pageId);
|
|
1375
1375
|
} catch (error) {
|