playwright-core 1.57.0-alpha-2025-10-05 → 1.57.0-alpha-2025-10-07

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playwright-core",
3
- "version": "1.57.0-alpha-2025-10-05",
3
+ "version": "1.57.0-alpha-2025-10-07",
4
4
  "description": "A high-level API to automate web browsers",
5
5
  "repository": {
6
6
  "type": "git",
package/types/types.d.ts CHANGED
@@ -8802,18 +8802,18 @@ export interface BrowserContext {
8802
8802
  value: string;
8803
8803
 
8804
8804
  /**
8805
- * Either url or domain / path are required. Optional.
8805
+ * Either `url` or both `domain` and `path` are required. Optional.
8806
8806
  */
8807
8807
  url?: string;
8808
8808
 
8809
8809
  /**
8810
- * For the cookie to apply to all subdomains as well, prefix domain with a dot, like this: ".example.com". Either url
8811
- * or domain / path are required. Optional.
8810
+ * For the cookie to apply to all subdomains as well, prefix domain with a dot, like this: ".example.com". Either
8811
+ * `url` or both `domain` and `path` are required. Optional.
8812
8812
  */
8813
8813
  domain?: string;
8814
8814
 
8815
8815
  /**
8816
- * Either url or domain / path are required Optional.
8816
+ * Either `url` or both `domain` and `path` are required. Optional.
8817
8817
  */
8818
8818
  path?: string;
8819
8819