mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
22 lines
435 B
Markdown
22 lines
435 B
Markdown
|
---
|
||
|
sidebar_label: Browser.targets
|
||
|
---
|
||
|
|
||
|
# Browser.targets() method
|
||
|
|
||
|
Gets all active [targets](./puppeteer.target.md).
|
||
|
|
||
|
In case of multiple [browser contexts](./puppeteer.browsercontext.md), this returns all [targets](./puppeteer.target.md) in all [browser contexts](./puppeteer.browsercontext.md).
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Browser {
|
||
|
abstract targets(): Target[];
|
||
|
}
|
||
|
```
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
[Target](./puppeteer.target.md)\[\]
|