mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
51 lines
787 B
Markdown
51 lines
787 B
Markdown
---
|
|
sidebar_label: Page.goBack
|
|
---
|
|
|
|
# Page.goBack() method
|
|
|
|
This method navigate to the previous page in history.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Page {
|
|
abstract goBack(options?: WaitForOptions): Promise<HTTPResponse | null>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
<table><thead><tr><th>
|
|
|
|
Parameter
|
|
|
|
</th><th>
|
|
|
|
Type
|
|
|
|
</th><th>
|
|
|
|
Description
|
|
|
|
</th></tr></thead>
|
|
<tbody><tr><td>
|
|
|
|
options
|
|
|
|
</td><td>
|
|
|
|
[WaitForOptions](./puppeteer.waitforoptions.md)
|
|
|
|
</td><td>
|
|
|
|
_(Optional)_ Navigation parameters
|
|
|
|
</td></tr>
|
|
</tbody></table>
|
|
**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 back, resolves to `null`.
|