puppeteer/docs/api/puppeteer.browsercontext.waitfortarget.md
jrandolf 27c71a9cf6
chore: use generic implementation for BrowserContext.waitForTarget (#11848)
Co-authored-by: Alex Rudenko <OrKoN@users.noreply.github.com>
2024-02-06 17:42:05 +01:00

1.2 KiB

sidebar_label
BrowserContext.waitForTarget

BrowserContext.waitForTarget() method

Waits until a target matching the given predicate appears and returns it.

This will look all open browser contexts.

Signature:

class BrowserContext {
  waitForTarget(
    predicate: (x: Target) => boolean | Promise<boolean>,
    options?: WaitForTargetOptions
  ): Promise<Target>;
}

Parameters

Parameter Type Description
predicate (x: Target) => boolean | Promise<boolean>
options WaitForTargetOptions (Optional)

Returns:

Promise<Target>

Example

Finding a target for a page opened via window.open:

await page.evaluate(() => window.open('https://www.example.com/'));
const newWindowTarget = await browserContext.waitForTarget(
  target => target.url() === 'https://www.example.com/'
);