Capitalize other descriptions
This commit is contained in:
parent
c5516a7467
commit
d8f443c37c
|
|
@ -357,9 +357,9 @@ await context.AddCookiesAsync(new[] { cookie1, cookie2 });
|
|||
- `cookies` <[Array]<[Object]>>
|
||||
- `name` <[string]>
|
||||
- `value` <[string]>
|
||||
- `url` ?<[string]> either url or domain / path are required. Optional.
|
||||
- `url` ?<[string]> Either url or domain / path are required. Optional.
|
||||
- `domain` ?<[string]> For the cookie to apply to all subdomains as well, prefix domain with a dot, like this: ".example.com". Either url or domain / path are required. Optional.
|
||||
- `path` ?<[string]> either url or domain / path are required Optional.
|
||||
- `path` ?<[string]> Either url or domain / path are required Optional.
|
||||
- `expires` ?<[float]> Unix time in seconds. Optional.
|
||||
- `httpOnly` ?<[boolean]> Optional.
|
||||
- `secure` ?<[boolean]> Optional.
|
||||
|
|
|
|||
4
packages/playwright-core/types/types.d.ts
vendored
4
packages/playwright-core/types/types.d.ts
vendored
|
|
@ -8294,7 +8294,7 @@ export interface BrowserContext {
|
|||
value: string;
|
||||
|
||||
/**
|
||||
* either url or domain / path are required. Optional.
|
||||
* Either url or domain / path are required. Optional.
|
||||
*/
|
||||
url?: string;
|
||||
|
||||
|
|
@ -8305,7 +8305,7 @@ export interface BrowserContext {
|
|||
domain?: string;
|
||||
|
||||
/**
|
||||
* either url or domain / path are required Optional.
|
||||
* Either url or domain / path are required Optional.
|
||||
*/
|
||||
path?: string;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue