Skip to content

Commit

Permalink
docs(csharp): trimming to avoid broken refs (#5330)
Browse files Browse the repository at this point in the history
  • Loading branch information
avodovnik committed Feb 19, 2021
1 parent bb2b296 commit 48f7a37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions docs/src/api/class-browsercontext.md
Expand Up @@ -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

Expand Down
4 changes: 1 addition & 3 deletions types/types.d.ts
Expand Up @@ -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>;

Expand Down

0 comments on commit 48f7a37

Please sign in to comment.