mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
1.1 KiB
1.1 KiB
sidebar_label |
---|
Browser.waitForTarget |
Browser.waitForTarget() method
Waits until a target matching the given predicate
appears and returns it.
This will look all open browser contexts.
Signature:
class Browser {
waitForTarget(
predicate: (x: Target) => boolean | Promise<boolean>,
options?: WaitForTargetOptions
): Promise<Target>;
}
Parameters
Parameter |
Type |
Description |
---|---|---|
predicate |
(x: Target) => boolean | Promise<boolean> | |
options |
(Optional) |
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 browser.waitForTarget(
target => target.url() === 'https://www.example.com/'
);