Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 921 Bytes

puppeteer.framemanager.navigateframe.md

File metadata and controls

28 lines (19 loc) · 921 Bytes

Home > puppeteer > FrameManager > navigateFrame

FrameManager.navigateFrame() method

Signature:

navigateFrame(frame: Frame, url: string, options?: {
        referer?: string;
        timeout?: number;
        waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[];
    }): Promise<HTTPResponse | null>;

Parameters

Parameter Type Description
frame Frame
url string
options { referer?: string; timeout?: number; waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[]; }

Returns:

Promise<HTTPResponse | null>