mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
20 lines
427 B
Markdown
20 lines
427 B
Markdown
|
---
|
||
|
sidebar_label: Target.asPage
|
||
|
---
|
||
|
|
||
|
# Target.asPage() method
|
||
|
|
||
|
Forcefully creates a page for a target of any type. It is useful if you want to handle a CDP target of type `other` as a page. If you deal with a regular page target, use [Target.page()](./puppeteer.target.page.md).
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Target {
|
||
|
abstract asPage(): Promise<Page>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<[Page](./puppeteer.page.md)>
|