@midscene/web 0.21.1 → 0.21.2
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/dist/es/agent.js +2 -3
- package/dist/es/agent.js.map +1 -1
- package/dist/es/bridge-mode-browser.js +3 -3
- package/dist/es/bridge-mode.js +4 -5
- package/dist/es/bridge-mode.js.map +1 -1
- package/dist/es/chrome-extension.js +3 -4
- package/dist/es/chrome-extension.js.map +1 -1
- package/dist/es/index.js +2 -3
- package/dist/es/index.js.map +1 -1
- package/dist/es/midscene-playground.js +2 -3
- package/dist/es/midscene-playground.js.map +1 -1
- package/dist/es/playground.js +2 -3
- package/dist/es/playground.js.map +1 -1
- package/dist/es/playwright.js +2 -3
- package/dist/es/playwright.js.map +1 -1
- package/dist/es/puppeteer-agent-launcher.js +2 -3
- package/dist/es/puppeteer-agent-launcher.js.map +1 -1
- package/dist/es/puppeteer.js +2 -3
- package/dist/es/puppeteer.js.map +1 -1
- package/dist/lib/agent.js +2 -3
- package/dist/lib/agent.js.map +1 -1
- package/dist/lib/bridge-mode-browser.js +3 -3
- package/dist/lib/bridge-mode.js +4 -5
- package/dist/lib/bridge-mode.js.map +1 -1
- package/dist/lib/chrome-extension.js +3 -4
- package/dist/lib/chrome-extension.js.map +1 -1
- package/dist/lib/index.js +2 -3
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/midscene-playground.js +2 -3
- package/dist/lib/midscene-playground.js.map +1 -1
- package/dist/lib/playground.js +2 -3
- package/dist/lib/playground.js.map +1 -1
- package/dist/lib/playwright.js +2 -3
- package/dist/lib/playwright.js.map +1 -1
- package/dist/lib/puppeteer-agent-launcher.js +2 -3
- package/dist/lib/puppeteer-agent-launcher.js.map +1 -1
- package/dist/lib/puppeteer.js +2 -3
- package/dist/lib/puppeteer.js.map +1 -1
- package/package.json +3 -3
|
@@ -70,7 +70,7 @@ import yaml from "js-yaml";
|
|
|
70
70
|
import semver from "semver";
|
|
71
71
|
|
|
72
72
|
// package.json
|
|
73
|
-
var version = "0.21.
|
|
73
|
+
var version = "0.21.2";
|
|
74
74
|
|
|
75
75
|
// src/common/task-cache.ts
|
|
76
76
|
var debug = getDebug("cache");
|
|
@@ -2424,8 +2424,7 @@ ${reasonMsg}`);
|
|
|
2424
2424
|
checkIntervalMs: opt?.checkIntervalMs || 3 * 1e3,
|
|
2425
2425
|
assertion
|
|
2426
2426
|
});
|
|
2427
|
-
this.
|
|
2428
|
-
this.writeOutActionDumps();
|
|
2427
|
+
await this.afterTaskRunning(executor, true);
|
|
2429
2428
|
if (executor.isInErrorState()) {
|
|
2430
2429
|
const errorTask = executor.latestErrorTask();
|
|
2431
2430
|
throw new Error(`${errorTask?.error}
|
|
@@ -2756,7 +2755,7 @@ function sleep2(ms) {
|
|
|
2756
2755
|
var ChromeExtensionProxyPage = class {
|
|
2757
2756
|
constructor(forceSameTabNavigation) {
|
|
2758
2757
|
this.pageType = "chrome-extension-proxy";
|
|
2759
|
-
this.version = "0.21.
|
|
2758
|
+
this.version = "0.21.2";
|
|
2760
2759
|
this.activeTabId = null;
|
|
2761
2760
|
this.tabIdOfDebuggerAttached = null;
|
|
2762
2761
|
this.attachingDebugger = null;
|