Back to Puppeteer

Target.asPage() method

website/versioned_docs/version-24.40.0/api/puppeteer.target.aspage.md

19.2.2386 B
Original Source

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().

Signature

typescript
class Target {
  abstract asPage(): Promise<Page>;
}

Returns:

Promise<Page>