playwright 1.57.0-alpha-2025-10-26 → 1.57.0-alpha-2025-10-27
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.
|
@@ -152,7 +152,7 @@ function renderTabSnapshot(tabSnapshot, options = {}) {
|
|
|
152
152
|
lines.push(`- Page Title: ${tabSnapshot.title}`);
|
|
153
153
|
lines.push(`- Page Snapshot:`);
|
|
154
154
|
lines.push("```yaml");
|
|
155
|
-
lines.push(options.omitSnapshot ? "<snapshot>" : tabSnapshot.ariaSnapshot);
|
|
155
|
+
lines.push(options.omitSnapshot ? "<snapshot>" : tabSnapshot.ariaSnapshot || "<no changes>");
|
|
156
156
|
lines.push("```");
|
|
157
157
|
return lines.join("\n");
|
|
158
158
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "playwright",
|
|
3
|
-
"version": "1.57.0-alpha-2025-10-
|
|
3
|
+
"version": "1.57.0-alpha-2025-10-27",
|
|
4
4
|
"description": "A high-level API to automate web browsers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"license": "Apache-2.0",
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"playwright-core": "1.57.0-alpha-2025-10-
|
|
67
|
+
"playwright-core": "1.57.0-alpha-2025-10-27"
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
70
|
"fsevents": "2.3.2"
|