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 ## 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
View file

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