@playdrop/playdrop-cli 0.14.8 → 0.14.9

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.
Files changed (176) hide show
  1. package/config/client-meta.json +2 -2
  2. package/node_modules/@playdrop/config/client-meta.json +2 -2
  3. package/node_modules/@playwright/mcp/LICENSE +201 -0
  4. package/node_modules/@playwright/mcp/README.md +1592 -0
  5. package/node_modules/@playwright/mcp/cli.js +32 -0
  6. package/node_modules/@playwright/mcp/config.d.ts +239 -0
  7. package/node_modules/@playwright/mcp/index.d.ts +23 -0
  8. package/node_modules/@playwright/mcp/index.js +19 -0
  9. package/node_modules/@playwright/mcp/node_modules/playwright/LICENSE +202 -0
  10. package/node_modules/@playwright/mcp/node_modules/playwright/NOTICE +5 -0
  11. package/node_modules/@playwright/mcp/node_modules/playwright/README.md +318 -0
  12. package/node_modules/@playwright/mcp/node_modules/playwright/ThirdPartyNotices.txt +14 -0
  13. package/node_modules/@playwright/mcp/node_modules/playwright/cli.js +19 -0
  14. package/node_modules/@playwright/mcp/node_modules/playwright/index.d.ts +17 -0
  15. package/node_modules/@playwright/mcp/node_modules/playwright/index.js +17 -0
  16. package/node_modules/@playwright/mcp/node_modules/playwright/index.mjs +18 -0
  17. package/node_modules/@playwright/mcp/node_modules/playwright/jsx-runtime.js +42 -0
  18. package/node_modules/@playwright/mcp/node_modules/playwright/jsx-runtime.mjs +21 -0
  19. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/agentParser.js +89 -0
  20. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/copilot-setup-steps.yml +34 -0
  21. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/generateAgents.js +395 -0
  22. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-coverage.prompt.md +31 -0
  23. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-generate.prompt.md +8 -0
  24. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-generator.agent.md +88 -0
  25. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-heal.prompt.md +6 -0
  26. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-healer.agent.md +56 -0
  27. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-plan.prompt.md +9 -0
  28. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-planner.agent.md +74 -0
  29. package/node_modules/@playwright/mcp/node_modules/playwright/lib/cli/reportActions.js +78 -0
  30. package/node_modules/@playwright/mcp/node_modules/playwright/lib/cli/testActions.js +213 -0
  31. package/node_modules/@playwright/mcp/node_modules/playwright/lib/common/index.js +2966 -0
  32. package/node_modules/@playwright/mcp/node_modules/playwright/lib/common/index.js.txt +34 -0
  33. package/node_modules/@playwright/mcp/node_modules/playwright/lib/errorContext.js +129 -0
  34. package/node_modules/@playwright/mcp/node_modules/playwright/lib/globals.js +58 -0
  35. package/node_modules/@playwright/mcp/node_modules/playwright/lib/index.js +783 -0
  36. package/node_modules/@playwright/mcp/node_modules/playwright/lib/isomorphic.js +260 -0
  37. package/node_modules/@playwright/mcp/node_modules/playwright/lib/isomorphic.js.txt +9 -0
  38. package/node_modules/@playwright/mcp/node_modules/playwright/lib/loader/loaderProcessEntry.js +34 -0
  39. package/node_modules/@playwright/mcp/node_modules/playwright/lib/loader/loaderProcessEntry.js.txt +9 -0
  40. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js +13480 -0
  41. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js.LICENSE +640 -0
  42. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js.txt +67 -0
  43. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/browserBackend.js +125 -0
  44. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/generatorTools.js +122 -0
  45. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/plannerTools.js +150 -0
  46. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/seed.js +82 -0
  47. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/streams.js +44 -0
  48. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testBackend.js +99 -0
  49. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testContext.js +306 -0
  50. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testTool.js +30 -0
  51. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testTools.js +98 -0
  52. package/node_modules/@playwright/mcp/node_modules/playwright/lib/package.js +47 -0
  53. package/node_modules/@playwright/mcp/node_modules/playwright/lib/program.js +237 -0
  54. package/node_modules/@playwright/mcp/node_modules/playwright/lib/runner/index.js +8154 -0
  55. package/node_modules/@playwright/mcp/node_modules/playwright/lib/runner/index.js.txt +59 -0
  56. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js +72275 -0
  57. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js.LICENSE +2384 -0
  58. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js.txt +325 -0
  59. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js +8060 -0
  60. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js.LICENSE +355 -0
  61. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js.txt +60 -0
  62. package/node_modules/@playwright/mcp/node_modules/playwright/lib/util.js +373 -0
  63. package/node_modules/@playwright/mcp/node_modules/playwright/lib/worker/workerProcessEntry.js +1850 -0
  64. package/node_modules/@playwright/mcp/node_modules/playwright/lib/worker/workerProcessEntry.js.txt +19 -0
  65. package/node_modules/@playwright/mcp/node_modules/playwright/package.json +58 -0
  66. package/node_modules/@playwright/mcp/node_modules/playwright/test.d.ts +18 -0
  67. package/node_modules/@playwright/mcp/node_modules/playwright/test.js +24 -0
  68. package/node_modules/@playwright/mcp/node_modules/playwright/test.mjs +35 -0
  69. package/node_modules/@playwright/mcp/node_modules/playwright/types/test.d.ts +10709 -0
  70. package/node_modules/@playwright/mcp/node_modules/playwright/types/testReporter.d.ts +908 -0
  71. package/node_modules/@playwright/mcp/node_modules/playwright-core/LICENSE +202 -0
  72. package/node_modules/@playwright/mcp/node_modules/playwright-core/NOTICE +5 -0
  73. package/node_modules/@playwright/mcp/node_modules/playwright-core/README.md +3 -0
  74. package/node_modules/@playwright/mcp/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  75. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
  76. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +33 -0
  77. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +42 -0
  78. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
  79. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
  80. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +42 -0
  81. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
  82. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
  83. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +48 -0
  84. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
  85. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
  86. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +48 -0
  87. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
  88. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
  89. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +48 -0
  90. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
  91. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
  92. package/node_modules/@playwright/mcp/node_modules/playwright-core/browsers.json +81 -0
  93. package/node_modules/@playwright/mcp/node_modules/playwright-core/cli.js +21 -0
  94. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.d.ts +17 -0
  95. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.js +17 -0
  96. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.mjs +28 -0
  97. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/bootstrap.js +88 -0
  98. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/coreBundle.js +74495 -0
  99. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/cliDaemon.js +5 -0
  100. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/dashboardApp.js +3 -0
  101. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/mcp.js +10 -0
  102. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/oopBrowserDownload.js +3 -0
  103. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/package.js +50 -0
  104. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
  105. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/server/electron/loader.js +118 -0
  106. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/serverRegistry.js +7347 -0
  107. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/serverRegistry.js.LICENSE +354 -0
  108. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/channelSessions.js +141 -0
  109. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/cli.js +6 -0
  110. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/help.json +707 -0
  111. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/minimist.js +128 -0
  112. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/output.js +343 -0
  113. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/program.js +404 -0
  114. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/registry.js +176 -0
  115. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/session.js +258 -0
  116. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/SKILL.md +420 -0
  117. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  118. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  119. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  120. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/running-code.md +241 -0
  121. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/session-management.md +225 -0
  122. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  123. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/test-generation.md +433 -0
  124. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/tracing.md +139 -0
  125. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  126. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/dashboard/appIcon.png +0 -0
  127. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/trace/SKILL.md +171 -0
  128. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/utils/extension.js +78 -0
  129. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/utils/socketConnection.js +108 -0
  130. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/utilsBundle.js +90764 -0
  131. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2179 -0
  132. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  133. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  134. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  135. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  136. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/index-CyWAfh-p.js +11 -0
  137. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/index-DhC616m4.css +1 -0
  138. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  139. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/index.html +29 -0
  140. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/playwright-logo.svg +24 -0
  141. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/index.html +16 -0
  142. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/report.css +2 -0
  143. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/report.js +32 -0
  144. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule--QdMvsKi.css +1 -0
  145. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-BVGIAA-i.js +32 -0
  146. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  147. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/index-BQ57a3QC.js +129 -0
  148. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/index-l_lX622x.css +1 -0
  149. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
  150. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
  151. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-BSEO6m_i.js +32 -0
  152. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-CT5oRh4X.js +181 -0
  153. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/urlMatch-L3liM589.js +1 -0
  154. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-BN2nOuEV.js +7 -0
  155. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.-QdMvsKi.css +1 -0
  156. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  157. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.BLFoOugd.css +1 -0
  158. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.B_TqY17P.css +1 -0
  159. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.DLSGjmWZ.js +1 -0
  160. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.html +44 -0
  161. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/manifest.webmanifest +16 -0
  162. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
  163. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/snapshot.B_Jk1wbt.js +1 -0
  164. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +10 -0
  165. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +4 -0
  166. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.C7UW1sC9.css +1 -0
  167. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.CZvydVOh.js +5 -0
  168. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +18 -0
  169. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.kHJ-D0s7.css +1 -0
  170. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/xdg-open +1267 -0
  171. package/node_modules/@playwright/mcp/node_modules/playwright-core/package.json +34 -0
  172. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/protocol.d.ts +24842 -0
  173. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/structs.d.ts +45 -0
  174. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/types.d.ts +26088 -0
  175. package/node_modules/@playwright/mcp/package.json +51 -0
  176. package/package.json +3 -1
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ var import_coreBundle = require("../coreBundle");
3
+ const { program } = require("../utilsBundle");
4
+ import_coreBundle.tools.decorateCliDaemonProgram(program);
5
+ void program.parseAsync();
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ var import_coreBundle = require("../coreBundle");
3
+ import_coreBundle.tools.openDashboardApp();
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ var import_coreBundle = require("../coreBundle");
3
+ var import_package = require("../package");
4
+ const { program } = require("../utilsBundle");
5
+ const p = program.version("Version " + import_package.packageJSON.version).name("Playwright MCP");
6
+ import_coreBundle.tools.decorateMCPCommand(p);
7
+ program.parseAsync(process.argv).catch((e) => {
8
+ console.error(e.message);
9
+ import_coreBundle.utils.gracefullyProcessExitDoNotHang(1);
10
+ });
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ var import_coreBundle = require("../coreBundle");
3
+ import_coreBundle.registry.runOopDownloadBrowserMain();
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var package_exports = {};
30
+ __export(package_exports, {
31
+ binPath: () => binPath,
32
+ libPath: () => libPath,
33
+ packageJSON: () => packageJSON,
34
+ packageRoot: () => packageRoot
35
+ });
36
+ module.exports = __toCommonJS(package_exports);
37
+ var import_path = __toESM(require("path"));
38
+ const packageRoot = import_path.default.join(__dirname, "..");
39
+ const packageJSON = require(import_path.default.join(packageRoot, "package.json"));
40
+ const binPath = import_path.default.join(packageRoot, "bin");
41
+ function libPath(...parts) {
42
+ return import_path.default.join(packageRoot, "lib", ...parts);
43
+ }
44
+ // Annotate the CommonJS export names for ESM import in node:
45
+ 0 && (module.exports = {
46
+ binPath,
47
+ libPath,
48
+ packageJSON,
49
+ packageRoot
50
+ });
@@ -0,0 +1,118 @@
1
+ "use strict";
2
+
3
+ // packages/playwright-core/src/server/electron/loader.ts
4
+ var import_electron = require("electron");
5
+
6
+ // packages/playwright-core/src/server/chromium/chromiumSwitches.ts
7
+ var disabledFeatures = [
8
+ // See https://github.com/microsoft/playwright/issues/14047
9
+ "AvoidUnnecessaryBeforeUnloadCheckSync",
10
+ // See https://github.com/microsoft/playwright/issues/38568
11
+ "BoundaryEventDispatchTracksNodeRemoval",
12
+ "DestroyProfileOnBrowserClose",
13
+ // See https://github.com/microsoft/playwright/pull/13854
14
+ "DialMediaRouteProvider",
15
+ "GlobalMediaControls",
16
+ // See https://github.com/microsoft/playwright/pull/27605
17
+ "HttpsUpgrades",
18
+ // Hides the Lens feature in the URL address bar. Its not working in unofficial builds.
19
+ "LensOverlay",
20
+ // See https://github.com/microsoft/playwright/pull/8162
21
+ "MediaRouter",
22
+ // See https://github.com/microsoft/playwright/issues/28023
23
+ "PaintHolding",
24
+ // See https://github.com/microsoft/playwright/issues/32230
25
+ "ThirdPartyStoragePartitioning",
26
+ // Chromium 149 rejects re-applying the `origin` header on a redirect (as request interception
27
+ // does) with net::ERR_INVALID_ARGUMENT. See https://github.com/microsoft/playwright/issues/41690
28
+ "BlockOriginHeaderModificationOnRedirect",
29
+ // See https://github.com/microsoft/playwright/issues/16126
30
+ "Translate",
31
+ // See https://issues.chromium.org/u/1/issues/435410220
32
+ "AutoDeElevate",
33
+ // Prevents downloading optimization hints on startup.
34
+ "OptimizationHints",
35
+ // Disables forced sign-in in Edge.
36
+ "msForceBrowserSignIn",
37
+ // Disables updating the preferred version in LaunchServices preferences on mac.
38
+ "msEdgeUpdateLaunchServicesPreferredVersion"
39
+ ].filter(Boolean);
40
+ var chromiumSwitches = (options) => [
41
+ "--disable-field-trial-config",
42
+ // https://source.chromium.org/chromium/chromium/src/+/main:testing/variations/README.md
43
+ "--disable-background-networking",
44
+ "--disable-background-timer-throttling",
45
+ "--disable-backgrounding-occluded-windows",
46
+ "--disable-back-forward-cache",
47
+ // Avoids surprises like main request not being intercepted during page.goBack().
48
+ "--disable-breakpad",
49
+ "--disable-client-side-phishing-detection",
50
+ "--disable-component-extensions-with-background-pages",
51
+ "--disable-component-update",
52
+ // Avoids unneeded network activity after startup.
53
+ "--no-default-browser-check",
54
+ "--disable-default-apps",
55
+ "--disable-dev-shm-usage",
56
+ "--disable-edgeupdater",
57
+ // Disables Edge-specific updater on mac.
58
+ "--disable-extensions",
59
+ "--disable-features=" + disabledFeatures.join(","),
60
+ process.env.PLAYWRIGHT_LEGACY_SCREENSHOT ? "" : "--enable-features=CDPScreenshotNewSurface",
61
+ "--allow-pre-commit-input",
62
+ "--disable-hang-monitor",
63
+ "--disable-ipc-flooding-protection",
64
+ "--disable-popup-blocking",
65
+ "--disable-prompt-on-repost",
66
+ "--disable-renderer-backgrounding",
67
+ "--disable-updater-scheduler",
68
+ // Prevents Edge-specific updater from being launched when Edge is launched on mac.
69
+ "--force-color-profile=srgb",
70
+ "--metrics-recording-only",
71
+ "--no-first-run",
72
+ "--password-store=basic",
73
+ "--use-mock-keychain",
74
+ // See https://chromium-review.googlesource.com/c/chromium/src/+/2436773
75
+ "--no-service-autorun",
76
+ "--export-tagged-pdf",
77
+ // https://chromium-review.googlesource.com/c/chromium/src/+/4853540
78
+ "--disable-search-engine-choice-screen",
79
+ // https://issues.chromium.org/41491762
80
+ "--unsafely-disable-devtools-self-xss-warnings",
81
+ // Edge can potentially restart on Windows (msRelaunchNoCompatLayer) which looses its file descriptors (stdout/stderr) and CDP (3/4). Disable until fixed upstream.
82
+ "--edge-skip-compat-layer-relaunch",
83
+ // This disables Chrome for Testing infobar that is visible in the persistent context.
84
+ // The switch is ignored everywhere else, including Chromium/Chrome/Edge.
85
+ "--disable-infobars",
86
+ // Less annoying popups.
87
+ "--disable-search-engine-choice-screen",
88
+ // Prevents the "three dots" menu crash in IdentityManager::HasPrimaryAccount for ephemeral contexts.
89
+ options?.android ? "" : "--disable-sync"
90
+ ].filter(Boolean);
91
+
92
+ // packages/playwright-core/src/server/electron/loader.ts
93
+ process.argv.splice(1, process.argv.indexOf("--remote-debugging-port=0"));
94
+ for (const arg of chromiumSwitches()) {
95
+ const match = arg.match(/--([^=]*)=?(.*)/);
96
+ import_electron.app.commandLine.appendSwitch(match[1], match[2]);
97
+ }
98
+ var originalWhenReady = import_electron.app.whenReady();
99
+ var originalEmit = import_electron.app.emit.bind(import_electron.app);
100
+ var readyEventArgs;
101
+ import_electron.app.emit = (event, ...args) => {
102
+ if (event === "ready") {
103
+ readyEventArgs = args;
104
+ return import_electron.app.listenerCount("ready") > 0;
105
+ }
106
+ return originalEmit(event, ...args);
107
+ };
108
+ var isReady = false;
109
+ var whenReadyCallback;
110
+ var whenReadyPromise = new Promise((f) => whenReadyCallback = f);
111
+ import_electron.app.isReady = () => isReady;
112
+ import_electron.app.whenReady = () => whenReadyPromise;
113
+ globalThis.__playwright_run = async () => {
114
+ const event = await originalWhenReady;
115
+ isReady = true;
116
+ whenReadyCallback(event);
117
+ originalEmit("ready", ...readyEventArgs);
118
+ };