← Back to Page domain

Page.navigateToHistoryEntry

Navigates current page to the given history entry.

Domain: Page stable

Parameters

NameTypeDescription
entryIdintegerUnique id of the entry to navigate to.

Example Request

{
  "id": 1,
  "method": "Page.navigateToHistoryEntry",
  "params": {
    "entryId": 1
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Page.navigateToHistoryEntry', {"entryId": 1});
console.log(result);