website/versioned_docs/version-24.40.0/api/puppeteer.target.md
Target represents a CDP target. In CDP a target is something that can be debugged such a frame, a page or a worker.
export declare abstract class Target
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.
Method
</th><th>Modifiers
</th><th>Description
</th></tr></thead> <tbody><tr><td><span id="aspage">asPage()</span>
</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().
<span id="browser">browser()</span>
</td><td> </td><td>Get the browser the target belongs to.
</td></tr> <tr><td><span id="browsercontext">browserContext()</span>
</td><td> </td><td>Get the browser context the target belongs to.
</td></tr> <tr><td><span id="createcdpsession">createCDPSession()</span>
</td><td> </td><td>Creates a Chrome Devtools Protocol session attached to the target.
</td></tr> <tr><td><span id="opener">opener()</span>
</td><td> </td><td>Get the target that opened this target. Top-level targets return null.
<span id="page">page()</span>
</td><td> </td><td>If the target is not of type "page", "webview" or "background_page", returns null.
<span id="type">type()</span>
</td><td> </td><td>Identifies what kind of target this is.
Remarks:
See docs for more info about background pages.
</td></tr> <tr><td><span id="url">url()</span>
</td><td> </td><td> </td></tr> <tr><td><span id="worker">worker()</span>
</td><td> </td><td>If the target is not of type "service_worker" or "shared_worker", returns null.