mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
38 lines
1.1 KiB
Markdown
38 lines
1.1 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Browser](./puppeteer.browser.md) > [waitForTarget](./puppeteer.browser.waitfortarget.md)
|
|
|
|
## Browser.waitForTarget() method
|
|
|
|
Searches for a target in all browser contexts.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
waitForTarget(predicate: (x: Target) => boolean, options?: WaitForTargetOptions): Promise<Target>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| predicate | (x: [Target](./puppeteer.target.md)<!-- -->) => boolean | A function to be run for every target. |
|
|
| options | [WaitForTargetOptions](./puppeteer.waitfortargetoptions.md) | |
|
|
|
|
<b>Returns:</b>
|
|
|
|
Promise<[Target](./puppeteer.target.md)<!-- -->>
|
|
|
|
The first target found that matches the `predicate` function.
|
|
|
|
## Example
|
|
|
|
An example of finding a target for a page opened via `window.open`<!-- -->:
|
|
|
|
```js
|
|
await page.evaluate(() => window.open('https://www.example.com/'));
|
|
const newWindowTarget = await browser.waitForTarget(target => target.url() === 'https://www.example.com/');
|
|
|
|
```
|
|
|