Generate Playwright repro
generate_playwright_reproGenerate a runnable Playwright test that reproduces user actions from recorded sessions, including clicks, typing, navigation, and select changes, with optional time range filtering.
Instructions
Generate a runnable Playwright test (TypeScript) reproducing the user actions in a session: clicks, typing, navigation, and changes. Optionally limit to a [startTs, endTs] epoch-ms window. Returns the test source as text. Note: only single-value is represented (rrweb captures one value per input).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes | Session id from list_recent_sessions. | |
| startTs | No | Only include actions at or after this epoch-ms timestamp. Omit to start at the session beginning. | |
| endTs | No | Only include actions at or before this epoch-ms timestamp. Omit to run through the session end. |