[Windows] In-app browser device preview toolbar closes when Browser Use returns control
Codex App version
Microsoft Store package version 26.715.3651.0 on Windows x64.
What issue are you seeing?
When Browser Use sets the in-app browser to an iPhone-sized responsive/device preview (393 × 852), the preview works while the agent controls the browser, but the visible device-preview toolbar closes again as soon as the Browser Use step ends and control returns to the user.
This also reproduced when the agent deliberately did not call tabs.finalize(). During the active Browser Use call, page evaluation confirmed:
window.innerWidth === 393window.innerHeight === 852
After the tool call returned, the user observed the device-preview toolbar close again.
Steps to reproduce
- Open a local web page in the Codex in-app browser.
- Start Browser Use and set the browser viewport:
``js``
await viewport.set({ width: 393, height: 852 })
- With the tab claimed, reload if necessary and verify the page viewport is 393 × 852.
- End the Browser Use tool call and return control to the user.
- Observe that the visible responsive/device-preview toolbar closes or is no longer visibly pinned.
- Repeat without calling
browser.tabs.finalize(...); the same behavior occurs.
Expected behavior
The user-selected or agent-set device preview should remain visibly active until the user or agent explicitly resets it.
Actual behavior
The device preview is temporary to the Browser Use control step. Its toolbar is dismissed when control returns, so the agent cannot leave the requested iPhone preview visibly pinned for the user.
Additional context
The first reproduction used tabs.finalize(), which also closed the toolbar. A second reproduction intentionally omitted finalization, but the toolbar still closed after the Browser Use call ended.
I searched existing issues before filing. Issues such as #28062 cover different device-toolbar problems (for example, blank zoom options), not this toolbar-lifecycle/persistence behavior.