get_tabs
List all open browser tabs with indices and names, enabling informed tab switching decisions during automation.
Instructions
Retrieve all open browser tabs for the current session.
Purpose
Provides visibility into all tabs so the agent can decide which tab to switch to.
Each tab is identified by an index and optional name.
Parameters
session_id : str Active browser session identifier.
Returns
dict { "session_id": str, "status": str, "message": str, "tabs": [ { "index": int, "name": str, "current": bool } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes |