playwright-core 1.57.0-alpha-2025-10-06 → 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/ThirdPartyNotices.txt +33 -120
- package/lib/server/browserContext.js +9 -10
- package/lib/server/chromium/chromiumSwitches.js +2 -0
- package/lib/server/socksClientCertificatesInterceptor.js +7 -3
- package/lib/server/utils/network.js +3 -4
- package/lib/utilsBundleImpl/index.js +113 -112
- package/package.json +1 -1
- package/types/types.d.ts +4 -4
package/package.json
CHANGED
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
|
|
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
|
|
8811
|
-
* or domain
|
|
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
|
|
8816
|
+
* Either `url` or both `domain` and `path` are required. Optional.
|
|
8817
8817
|
*/
|
|
8818
8818
|
path?: string;
|
|
8819
8819
|
|