Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 796 Bytes

puppeteer.frame.goto.md

File metadata and controls

27 lines (18 loc) · 796 Bytes

Home > puppeteer > Frame > goto

Frame.goto() method

Signature:

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

Parameters

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

Returns:

Promise<HTTPResponse | null>