List Tabs (Plus)
operagx_list_tabsList all open tabs and get stable tab IDs needed for browser automation with click, type_text, and other interaction tools.
Instructions
Lists every open tab with a stable tabId usable by every other tool in this server.
This complements the read-only list-tabs from the base OperaGX connector: that one is for
reading; this one hands you the id format the interaction tools (operagx_click, operagx_type_text,
operagx_map_elements, ...) expect in their tabId parameter.
Args: none.
Returns: { "tabs": [ { "tabId": string, "url": string, "title": string, "index": number } ] }
Examples:
Use when: you need to address a specific tab by id instead of relying on the default (first open tab).
Don't use when: you already have a tabId from a previous call in this session — ids are stable for the lifetime of the browser connection, no need to re-list before every action.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tabs | Yes |