playwright-core 1.57.0-alpha-2025-10-31 → 1.57.0-alpha-2025-11-01
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/browsers.json +5 -5
- package/lib/client/page.js +1 -2
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/protocol/validator.js +2 -2
- package/lib/server/deviceDescriptorsSource.json +54 -54
- package/lib/server/dispatchers/pageDispatcher.js +1 -1
- package/lib/server/page.js +23 -24
- package/lib/vite/htmlReport/index.html +12 -12
- package/lib/vite/traceViewer/assets/{codeMirrorModule-gm9bnLOx.js → codeMirrorModule-MjrFUZ7R.js} +1 -1
- package/lib/vite/traceViewer/assets/{defaultSettingsView-SEdt3QvG.js → defaultSettingsView-DJrBVYdp.js} +90 -90
- package/lib/vite/traceViewer/{index.CflMF1yt.js → index.ChvzYTYS.js} +1 -1
- package/lib/vite/traceViewer/index.html +2 -2
- package/lib/vite/traceViewer/{uiMode.CL1nfSef.js → uiMode.CGTqxLRk.js} +1 -1
- package/lib/vite/traceViewer/uiMode.html +2 -2
- package/package.json +1 -1
- package/types/protocol.d.ts +178 -14
package/browsers.json
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
"browsers": [
|
|
4
4
|
{
|
|
5
5
|
"name": "chromium",
|
|
6
|
-
"revision": "
|
|
6
|
+
"revision": "1198",
|
|
7
7
|
"installByDefault": true,
|
|
8
|
-
"browserVersion": "
|
|
8
|
+
"browserVersion": "142.0.7444.53"
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
11
|
"name": "chromium-headless-shell",
|
|
12
|
-
"revision": "
|
|
12
|
+
"revision": "1198",
|
|
13
13
|
"installByDefault": true,
|
|
14
|
-
"browserVersion": "
|
|
14
|
+
"browserVersion": "142.0.7444.53"
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
17
|
"name": "chromium-tip-of-tree",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"name": "webkit",
|
|
42
|
-
"revision": "
|
|
42
|
+
"revision": "2226",
|
|
43
43
|
"installByDefault": true,
|
|
44
44
|
"revisionOverrides": {
|
|
45
45
|
"debian11-x64": "2105",
|
package/lib/client/page.js
CHANGED
|
@@ -676,8 +676,7 @@ class Page extends import_channelOwner.ChannelOwner {
|
|
|
676
676
|
return result.pdf;
|
|
677
677
|
}
|
|
678
678
|
async _snapshotForAI(options = {}) {
|
|
679
|
-
|
|
680
|
-
return result.snapshot;
|
|
679
|
+
return await this._channel.snapshotForAI({ timeout: this._timeoutSettings.timeout(options), track: options.track });
|
|
681
680
|
}
|
|
682
681
|
}
|
|
683
682
|
class BindingCall extends import_channelOwner.ChannelOwner {
|