Capitalize other descriptions

This commit is contained in:
Yury Semikhatsky 2024-06-26 15:32:37 -07:00
parent c5516a7467
commit d8f443c37c
2 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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;