docs(csharp): trimming to avoid broken refs (#5330)
This commit is contained in:
parent
bb2b29631a
commit
48f7a37259
|
|
@ -527,8 +527,7 @@ Creates a new page in the browser context.
|
||||||
## method: BrowserContext.pages
|
## method: BrowserContext.pages
|
||||||
- returns: <[Array]<[Page]>>
|
- returns: <[Array]<[Page]>>
|
||||||
|
|
||||||
Returns all open pages in the context. Non visible pages, such as `"background_page"`, will not be listed here. You can
|
Returns all open pages in the context.
|
||||||
find them using [`method: ChromiumBrowserContext.backgroundPages`].
|
|
||||||
|
|
||||||
## async method: BrowserContext.route
|
## async method: BrowserContext.route
|
||||||
|
|
||||||
|
|
|
||||||
4
types/types.d.ts
vendored
4
types/types.d.ts
vendored
|
|
@ -4917,9 +4917,7 @@ export interface BrowserContext {
|
||||||
newPage(): Promise<Page>;
|
newPage(): Promise<Page>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns all open pages in the context. Non visible pages, such as `"background_page"`, will not be listed here. You can
|
* Returns all open pages in the context.
|
||||||
* find them using
|
|
||||||
* [chromiumBrowserContext.backgroundPages()](https://playwright.dev/docs/api/class-chromiumbrowsercontext#chromiumbrowsercontextbackgroundpages).
|
|
||||||
*/
|
*/
|
||||||
pages(): Array<Page>;
|
pages(): Array<Page>;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue