get_current_page_info
Retrieve current browser state including active URL, page title, and open tabs to confirm navigation, track multi-step processes, and manage tab switching.
Instructions
Retrieve comprehensive information about the current browser state including current URL, page title, number of open tabs, and details about each tab. Essential for understanding where you are in a multi-step process, confirming navigation worked, or deciding which tab to switch to. Returns list of all tabs with their URLs, titles, and which one is currently active.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | Session ID obtained from initialize_session |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "Session ID obtained from initialize_session",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}