Page.navigateToHistoryEntryNavigates current page to the given history entry.
| Name | Type | Description |
|---|---|---|
entryId | integer | Unique id of the entry to navigate to. |
{
"id": 1,
"method": "Page.navigateToHistoryEntry",
"params": {
"entryId": 1
}
}
{
"id": 1,
"result": {}
}
const result = await send('Page.navigateToHistoryEntry', {"entryId": 1});
console.log(result);