docs(csharp): trimming to avoid broken refs (#5330)

This commit is contained in:
Anže Vodovnik 2021-02-19 18:37:03 +01:00 committed by GitHub
parent bb2b29631a
commit 48f7a37259
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -527,8 +527,7 @@ Creates a new page in the browser context.
## method: BrowserContext.pages
- returns: <[Array]<[Page]>>
Returns all open pages in the context. Non visible pages, such as `"background_page"`, will not be listed here. You can
find them using [`method: ChromiumBrowserContext.backgroundPages`].
Returns all open pages in the context.
## async method: BrowserContext.route

4
types/types.d.ts vendored
View File

@ -4917,9 +4917,7 @@ export interface BrowserContext {
newPage(): Promise<Page>;
/**
* Returns all open pages in the context. Non visible pages, such as `"background_page"`, will not be listed here. You can
* find them using
* [chromiumBrowserContext.backgroundPages()](https://playwright.dev/docs/api/class-chromiumbrowsercontext#chromiumbrowsercontextbackgroundpages).
* Returns all open pages in the context.
*/
pages(): Array<Page>;