navigate_history
Navigate browser history back or forward in the selected tab to test navigation flows, verify page states, or automate browsing sequences.
Instructions
Navigate the selected tab's history back or forward. NOTE: After navigation, UIDs from previous snapshots are stale—take a new snapshot before UID-based actions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | Yes | Direction to navigate in history |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"description": "Direction to navigate in history",
"enum": [
"back",
"forward"
],
"type": "string"
}
},
"required": [
"direction"
],
"type": "object"
}