2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: BrowserContext.waitForTarget
|
|
|
|
---
|
|
|
|
|
|
|
|
# BrowserContext.waitForTarget() method
|
|
|
|
|
2023-09-18 18:11:55 +00:00
|
|
|
Waits until a [target](./puppeteer.target.md) matching the given `predicate` appears and returns it.
|
|
|
|
|
|
|
|
This will look all open [browser contexts](./puppeteer.browsercontext.md).
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class BrowserContext {
|
2023-09-18 18:11:55 +00:00
|
|
|
abstract waitForTarget(
|
2022-07-05 13:41:43 +00:00
|
|
|
predicate: (x: Target) => boolean | Promise<boolean>,
|
|
|
|
options?: {
|
|
|
|
timeout?: number;
|
|
|
|
}
|
|
|
|
): Promise<Target>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2023-09-18 18:11:55 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ---------------------------------------------------------------------------- | ------------ |
|
|
|
|
| predicate | (x: [Target](./puppeteer.target.md)) => boolean \| Promise<boolean> | |
|
|
|
|
| options | { timeout?: number; } | _(Optional)_ |
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[Target](./puppeteer.target.md)>
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
2023-09-18 18:11:55 +00:00
|
|
|
Finding a target for a page opened via `window.open`:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```ts
|
|
|
|
await page.evaluate(() => window.open('https://www.example.com/'));
|
|
|
|
const newWindowTarget = await browserContext.waitForTarget(
|
|
|
|
target => target.url() === 'https://www.example.com/'
|
|
|
|
);
|
|
|
|
```
|