2022-07-05 13:41:43 +00:00
---
sidebar_label: Target
---
# Target class
2022-12-09 12:57:39 +00:00
Target represents a [CDP target ](https://chromedevtools.github.io/devtools-protocol/tot/Target/ ). In CDP a target is something that can be debugged such a frame, a page or a worker.
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
2023-11-09 12:57:33 +00:00
export declare abstract class Target
2022-07-05 13:41:43 +00:00
```
## Remarks
The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the `Target` class.
## Methods
2024-03-20 15:03:14 +00:00
< table > < thead > < tr > < th >
Method
< / th > < th >
Modifiers
< / th > < th >
Description
< / th > < / tr > < / thead >
< tbody > < tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "aspage" > [asPage()](./puppeteer.target.aspage.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
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 ).
< / td > < / tr >
< tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "browser" > [browser()](./puppeteer.target.browser.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
Get the browser the target belongs to.
< / td > < / tr >
< tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "browsercontext" > [browserContext()](./puppeteer.target.browsercontext.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
Get the browser context the target belongs to.
< / td > < / tr >
< tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "createcdpsession" > [createCDPSession()](./puppeteer.target.createcdpsession.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
Creates a Chrome Devtools Protocol session attached to the target.
< / td > < / tr >
< tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "opener" > [opener()](./puppeteer.target.opener.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
Get the target that opened this target. Top-level targets return `null` .
< / td > < / tr >
< tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "page" > [page()](./puppeteer.target.page.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
If the target is not of type `"page"` , `"webview"` or `"background_page"` , returns `null` .
< / td > < / tr >
< tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "type" > [type()](./puppeteer.target.type.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
Identifies what kind of target this is.
2024-04-29 12:50:39 +00:00
**Remarks:**
See [docs ](https://developer.chrome.com/extensions/background_pages ) for more info about background pages.
2024-03-20 15:03:14 +00:00
< / td > < / tr >
< tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "url" > [url()](./puppeteer.target.url.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
< / td > < / tr >
< tr > < td >
2024-04-11 11:01:13 +00:00
< span id = "worker" > [worker()](./puppeteer.target.worker.md)< / span >
2024-03-20 15:03:14 +00:00
< / td > < td >
< / td > < td >
If the target is not of type `"service_worker"` or `"shared_worker"` , returns `null` .
< / td > < / tr >
< / tbody > < / table >