Member Junction
    Preparing search index...
    • Maps a single Base RemoteBrowserHumanInput (a human-takeover pointer/key event) to the computer-use BrowserAction the adapter executes. Exhaustive over input.Kind.

      • pointer-moveMouseMoveAction at X/Y (cursor move, no click).
      • pointer-clickClickAction at X/Y, carrying the chosen mouse Button and any held Modifiers (e.g. Shift-click to extend a text selection).
      • pointer-down / pointer-upMouseDownAction / MouseUpAction at X/Y — the two halves of a click-drag (e.g. drag-selecting text). The surface emits down → moves → up over time.
      • keyKeypressAction carrying the key plus any held Modifiers (e.g. Ctrl/Cmd+A select-all).
      • textTypeAction carrying the pasted Text (no Selector — it inserts into the page's currently-focused element). Reuses the exact same insert-text machinery the agent's type action uses, so a human paste and an agent type follow one code path. This is the paste-in half of clipboard support.
      • scrollScrollAction carrying DeltaX/DeltaY. The adapter dispatches a CDP mouse-wheel (page.mouse.wheel) at the CURRENT cursor position; the surface emits a pointer-move before/with each scroll, so the cursor already sits over the scroll target's X/Y and the wheel lands there.

      Parameters

      Returns BrowserAction

      The equivalent computer-use BrowserAction.