get_current_tab
Retrieve the currently active browser tab in a Selenium session. Returns tab index, name, and current status.
Instructions
Retrieve the currently active browser tab.
Purpose
Allows the agent to confirm which tab is currently active without listing all tabs.
Parameters
session_id : str Active browser session identifier.
Returns
dict { "session_id": str, "status": str, "message": str, "tab": { "index": int, "name": str, "current": bool } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes |