--- sidebar_label: Page.goForward --- # Page.goForward() method This method navigate to the next page in history. #### Signature: ```typescript class Page { abstract goForward(options?: WaitForOptions): Promise; } ``` ## Parameters
Parameter Type Description
options [WaitForOptions](./puppeteer.waitforoptions.md) _(Optional)_ Navigation Parameter
**Returns:** Promise<[HTTPResponse](./puppeteer.httpresponse.md) \| null> Promise which resolves to the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect. If can not go forward, resolves to `null`.