puppeteer/docs/api/puppeteer.browsercontext.waitfortarget.md

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 {
  abstract waitForTarget(
    predicate: (x: Target) => boolean | Promise<boolean>,
    options?: {
      timeout?: number;
    }
  ): Promise<Target>;
}

Parameters

Parameter Type Description
predicate (x: Target) => boolean | Promise<boolean>
options { timeout?: number; } (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/'
);