Skip to content

Attach Browser

Type: browser-attach  ·  Package: Browser v1.0.0  ·  Output: ZoanPageSession

Reuse a browser session you already have open, instead of opening a new one with Open Browser. Useful when a session was created before (in another part of the playbook, or in a sub-playbook) and you want to continue working with it, or when several sections of the flow share the same browser.

Receives an existing browser session. If you give it a body, the activities within it inherit that session automatically (you don’t need to pass page in each one), just like with Open Browser.

ParameterEditorDescription
pagesessionThe session variable (ZoanPageSession) to connect to.

Ninguno.

Activities to execute with this browser session. They inherit the session automatically.

Reuse a previously opened browser with keepOpen in a later section:

Open Browser browser = chrome keepOpen = true → output: page
└─ body:
Page Navigate url = "https://portal.cliente.com"
... login ...
// más adelante en el flujo
Attach Browser page = = page
└─ body:
Extract Table selector = (#movimientos) → output: datos
  • Open Browser — open the browser that you then reuse.
  • New Page — open another tab in the attached session.