[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-webreel":3,"mdc--ao71ns-key":36,"related-repo-vercel-labs-webreel":4080,"related-org-vercel-labs-webreel":4089},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"webreel","create scripted browser demo videos","Create and record scripted browser demo videos with webreel. Generates MP4, GIF, or WebM recordings with cursor animation, keystroke overlays, and sound effects from a JSON config. Use when the user wants to record a demo, create a browser video, edit a webreel config, generate a screen recording, preview a demo, or work with webreel in any way.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Animation","animation","tag",{"name":17,"slug":18,"type":15},"Video","video",{"name":20,"slug":21,"type":15},"Browser Automation","browser-automation",{"name":23,"slug":24,"type":15},"Design","design",896,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fwebreel","2026-07-17T06:09:00.156575",null,50,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Record scripted browser demos as video","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fwebreel\u002Ftree\u002FHEAD\u002Fskills\u002Fwebreel","---\nname: webreel\ndescription: Create and record scripted browser demo videos with webreel. Generates MP4, GIF, or WebM recordings with cursor animation, keystroke overlays, and sound effects from a JSON config. Use when the user wants to record a demo, create a browser video, edit a webreel config, generate a screen recording, preview a demo, or work with webreel in any way.\n---\n\n# webreel\n\nwebreel records scripted browser demos as MP4, GIF, or WebM with cursor animation, keystroke overlays, and sound effects. You define steps in a JSON config, and webreel drives headless Chrome, captures frames, and encodes with ffmpeg.\n\n## Installation\n\nInstall webreel as a project dependency so the version is pinned in the lockfile. This ensures deterministic recordings across machines and CI.\n\n```bash\nnpm install webreel\n```\n\nIf the project already has webreel in its dependencies, skip this step.\n\n## Prerequisites\n\nwebreel requires Chrome and ffmpeg, but you do NOT need to install them manually. Both are automatically downloaded to `~\u002F.webreel` on first run if not already present. Do not install Chrome or Chromium via puppeteer, playwright, or any other tool. webreel manages its own browser.\n\nTo download dependencies explicitly, or to fix corrupted\u002Fbroken binaries:\n\n```bash\nnpx webreel install\nnpx webreel install --force   # delete cached binaries and re-download\n```\n\nTo override the auto-downloaded binaries, set these environment variables:\n\n- `CHROME_PATH` - path to a Chrome or Chromium binary (used for preview)\n- `CHROME_HEADLESS_PATH` - path to a chrome-headless-shell binary (used for recording)\n- `FFMPEG_PATH` - path to an ffmpeg binary\n\nIf a recording fails with \"No inspectable targets\" or similar browser errors, the issue is almost certainly in the webreel config (wrong `waitFor`, missing element, timing), not a missing browser. Check the config and use `--verbose` to debug.\n\n## .gitignore\n\nThe `.webreel` directory is created at the project root during recording (frames, intermediate files). Add it to `.gitignore`:\n\n```\n.webreel\n```\n\n## Quick start\n\n```bash\n# Scaffold a config\nnpx webreel init --name my-demo --url https:\u002F\u002Fexample.com\n\n# Edit webreel.config.json with your steps\n\n# Preview in a visible browser (no recording)\nnpx webreel preview my-demo\n\n# Record the video\nnpx webreel record my-demo\n```\n\n`npx` resolves to the locally installed version when webreel is in `devDependencies`. Output lands in `videos\u002F` by default (configurable via `outDir`).\n\n## CLI commands\n\n### init\n\nScaffold a new `webreel.config.json`.\n\n```bash\nwebreel init\nwebreel init --name login-flow --url https:\u002F\u002Fmyapp.com\nwebreel init --name hero -o hero.config.json\n```\n\nFlags: `--name` (video name), `--url` (starting URL), `-o, --output` (output file path).\n\n### record\n\nRecord one or more videos.\n\n```bash\nwebreel record                        # all videos in config\nwebreel record hero login             # specific videos by name\nwebreel record -c custom.config.json  # custom config path\nwebreel record --watch                # re-record on config change\nwebreel record --verbose              # log each step\nwebreel record --dry-run              # print resolved config only\nwebreel record --frames               # save raw JPEGs to .webreel\u002Fframes\u002F\n```\n\n### preview\n\nRun steps in a visible browser without recording.\n\n```bash\nwebreel preview\nwebreel preview hero --verbose\n```\n\n### composite\n\nRe-apply overlays (cursor, HUD, sfx) to existing raw video without re-recording. Useful for tweaking theme settings.\n\n```bash\nwebreel composite\nwebreel composite hero\n```\n\n### install\n\nDownload Chrome and ffmpeg to `~\u002F.webreel`. Also use this to fix corrupted or broken binaries.\n\n```bash\nwebreel install\nwebreel install --force  # delete cached binaries and re-download\n```\n\n### validate\n\nCheck config for errors without running anything.\n\n```bash\nwebreel validate\nwebreel validate -c custom.config.json\n```\n\n## Config structure\n\nConfig files are auto-discovered as `webreel.config.json` (or `.ts`, `.mts`, `.js`, `.mjs`). Use `-c` to specify a custom path.\n\n### Top-level fields\n\n| Field          | Default     | Description                                      |\n| -------------- | ----------- | ------------------------------------------------ |\n| `$schema`      | -           | `\"https:\u002F\u002Fwebreel.dev\u002Fschema\u002Fv1.json\"`           |\n| `outDir`       | `\"videos\u002F\"` | Output directory for rendered videos             |\n| `baseUrl`      | `\"\"`        | Base URL prepended to relative video URLs        |\n| `viewport`     | `1080x1080` | Default viewport `{ width, height }`             |\n| `theme`        | -           | Cursor and HUD overlay theme                     |\n| `sfx`          | -           | Sound effect settings                            |\n| `include`      | -           | Array of step file paths prepended to all videos |\n| `defaultDelay` | -           | Default delay (ms) appended after each step      |\n| `clickDwell`   | -           | Cursor dwell time (ms) before a click            |\n\n### Per-video fields\n\nEach entry in the `videos` map supports:\n\n| Field          | Default        | Description                                        |\n| -------------- | -------------- | -------------------------------------------------- |\n| `url`          | required       | URL to open (absolute or relative to `baseUrl`)    |\n| `viewport`     | inherited      | Override viewport `{ width, height }`              |\n| `zoom`         | -              | CSS zoom factor                                    |\n| `waitFor`      | -              | Selector or text to wait for before starting steps |\n| `output`       | `\"\u003Cname>.mp4\"` | Output path (`.mp4`, `.gif`, `.webm`)              |\n| `thumbnail`    | `{ time: 0 }`  | Thumbnail config, or `{ enabled: false }`          |\n| `include`      | inherited      | Step files to prepend                              |\n| `theme`        | inherited      | Override theme                                     |\n| `sfx`          | inherited      | Override sound effects                             |\n| `defaultDelay` | inherited      | Override default delay                             |\n| `clickDwell`   | inherited      | Override click dwell                               |\n| `fps`          | `60`           | Frame rate                                         |\n| `quality`      | `80`           | Encoding quality (1-100)                           |\n| `steps`        | required       | Array of step objects                              |\n\n### Videos map\n\nVideos are keyed by name in the config:\n\n```json\n{\n  \"videos\": {\n    \"hero\": { \"url\": \"...\", \"steps\": [...] },\n    \"login\": { \"url\": \"...\", \"steps\": [...] }\n  }\n}\n```\n\nRecord specific videos by name: `webreel record hero login`.\n\n## Step types\n\nEach step has an `action` field. Most steps accept optional `label`, `delay` (ms after step), and `description` fields.\n\n| Action       | Key fields                                  | Purpose                            |\n| ------------ | ------------------------------------------- | ---------------------------------- |\n| `pause`      | `ms`                                        | Wait for a duration                |\n| `click`      | `text` or `selector`, `within`, `modifiers` | Click an element                   |\n| `type`       | `text`, `selector`, `within`, `charDelay`   | Type text into an input            |\n| `key`        | `key`, `target`                             | Press a key combo (e.g. `\"cmd+s\"`) |\n| `drag`       | `from`, `to` (element targets)              | Drag between two elements          |\n| `scroll`     | `x`, `y`, `selector`                        | Scroll the page or an element      |\n| `wait`       | `selector` or `text`, `timeout`             | Wait for an element to appear      |\n| `moveTo`     | `text` or `selector`, `within`              | Move cursor to an element          |\n| `navigate`   | `url`                                       | Navigate to a new URL              |\n| `hover`      | `text` or `selector`, `within`              | Hover over an element              |\n| `select`     | `selector`, `value`                         | Select a dropdown value            |\n| `screenshot` | `output`                                    | Capture a PNG screenshot           |\n\nFor full field details on every step type, see [steps-reference.md](steps-reference.md).\n\n## Element targeting\n\nMany steps target elements using these fields:\n\n- `text` - match by visible text content\n- `selector` - match by CSS selector\n- `within` - narrow the search to a parent matching this CSS selector\n\nYou can use `text` or `selector` (not both). `within` is optional and scopes the search.\n\n```json\n{ \"action\": \"click\", \"text\": \"Submit\" }\n{ \"action\": \"click\", \"selector\": \"#submit-btn\" }\n{ \"action\": \"click\", \"text\": \"Submit\", \"within\": \".modal\" }\n```\n\n## Viewport presets\n\nUse preset names as string values for `viewport`, or specify `{ width, height }`:\n\n`desktop` (1920x1080), `desktop-hd` (2560x1440), `laptop` (1366x768), `macbook-air` (1440x900), `macbook-pro` (1512x982), `ipad` (1024x1366), `ipad-pro` (834x1194), `ipad-mini` (768x1024), `iphone-15` (393x852), `iphone-15-pro-max` (430x932), `iphone-se` (375x667), `pixel-8` (412x915), `galaxy-s24` (360x780).\n\n## Theme\n\nCustomize cursor appearance and keystroke HUD:\n\n```json\n{\n  \"theme\": {\n    \"cursor\": {\n      \"image\": \".\u002Fcursor.svg\",\n      \"size\": 32,\n      \"hotspot\": \"center\"\n    },\n    \"hud\": {\n      \"background\": \"rgba(30, 41, 59, 0.85)\",\n      \"color\": \"#e2e8f0\",\n      \"fontSize\": 48,\n      \"fontFamily\": \"\\\"SF Mono\\\", monospace\",\n      \"borderRadius\": 12,\n      \"position\": \"top\"\n    }\n  }\n}\n```\n\n- `cursor.image` - path to a custom cursor SVG or PNG\n- `cursor.size` - cursor size in pixels\n- `cursor.hotspot` - `\"top-left\"` (default) or `\"center\"`\n- `hud.position` - `\"top\"` or `\"bottom\"`\n\n## Common patterns\n\n### Shared steps via include\n\nFactor out reusable step sequences (e.g. dismissing a cookie banner) into JSON files:\n\n```json\n\u002F\u002F steps\u002Fdismiss-banner.json\n{\n  \"steps\": [\n    { \"action\": \"wait\", \"selector\": \".cookie-banner\", \"timeout\": 5000 },\n    { \"action\": \"click\", \"selector\": \".accept-btn\", \"delay\": 300 }\n  ]\n}\n```\n\nReference them in the config:\n\n```json\n{\n  \"include\": [\".\u002Fsteps\u002Fdismiss-banner.json\"],\n  \"videos\": { ... }\n}\n```\n\n### Multiple videos in one config\n\nDefine several videos in the `videos` map. Shared settings (`viewport`, `theme`, `defaultDelay`) are inherited from the top level.\n\n### Environment variables\n\nConfig values support `$VAR` and `${VAR}` substitution from the environment.\n\n### Output formats\n\nSet the `output` extension to control format: `.mp4` (default), `.gif`, `.webm`.\n\n```json\n{ \"output\": \"demo.gif\" }\n```\n\n## Tips\n\n- Always set `waitFor` on a video to ensure the page is ready before steps run.\n- Use `delay` on individual steps to control pacing between actions.\n- Use `--watch` during development for automatic re-recording on config changes.\n- Use `composite` to iterate on theme\u002Foverlay settings without re-recording.\n- Use `--verbose` to debug step execution.\n- Use `--dry-run` to inspect the fully resolved config (includes, env vars, defaults).\n- Use `zoom` to scale up small UIs for readability in the recording.\n- Start with `preview` to verify steps work before committing to a full recording.\n\n## Reference files\n\n- [steps-reference.md](steps-reference.md) - detailed docs for all 12 step types\n- [examples.md](examples.md) - annotated config examples for common use cases\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,48,54,61,66,101,106,112,125,130,182,187,225,246,252,272,282,288,435,469,475,481,494,572,601,606,611,769,774,779,818,823,828,864,869,881,919,924,929,969,975,1025,1031,1278,1284,1297,1669,1675,1680,1928,1940,1946,1982,2433,2445,2451,2456,2489,2514,2770,2776,2794,2901,2906,2911,3351,3424,3430,3436,3441,3697,3702,3796,3802,3833,3839,3860,3866,3897,3944,3950,4046,4052,4074],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":4},"text",{"type":42,"tag":49,"props":50,"children":51},"p",{},[52],{"type":47,"value":53},"webreel records scripted browser demos as MP4, GIF, or WebM with cursor animation, keystroke overlays, and sound effects. You define steps in a JSON config, and webreel drives headless Chrome, captures frames, and encodes with ffmpeg.",{"type":42,"tag":55,"props":56,"children":58},"h2",{"id":57},"installation",[59],{"type":47,"value":60},"Installation",{"type":42,"tag":49,"props":62,"children":63},{},[64],{"type":47,"value":65},"Install webreel as a project dependency so the version is pinned in the lockfile. This ensures deterministic recordings across machines and CI.",{"type":42,"tag":67,"props":68,"children":73},"pre",{"className":69,"code":70,"language":71,"meta":72,"style":72},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install webreel\n","bash","",[74],{"type":42,"tag":75,"props":76,"children":77},"code",{"__ignoreMap":72},[78],{"type":42,"tag":79,"props":80,"children":83},"span",{"class":81,"line":82},"line",1,[84,90,96],{"type":42,"tag":79,"props":85,"children":87},{"style":86},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[88],{"type":47,"value":89},"npm",{"type":42,"tag":79,"props":91,"children":93},{"style":92},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[94],{"type":47,"value":95}," install",{"type":42,"tag":79,"props":97,"children":98},{"style":92},[99],{"type":47,"value":100}," webreel\n",{"type":42,"tag":49,"props":102,"children":103},{},[104],{"type":47,"value":105},"If the project already has webreel in its dependencies, skip this step.",{"type":42,"tag":55,"props":107,"children":109},{"id":108},"prerequisites",[110],{"type":47,"value":111},"Prerequisites",{"type":42,"tag":49,"props":113,"children":114},{},[115,117,123],{"type":47,"value":116},"webreel requires Chrome and ffmpeg, but you do NOT need to install them manually. Both are automatically downloaded to ",{"type":42,"tag":75,"props":118,"children":120},{"className":119},[],[121],{"type":47,"value":122},"~\u002F.webreel",{"type":47,"value":124}," on first run if not already present. Do not install Chrome or Chromium via puppeteer, playwright, or any other tool. webreel manages its own browser.",{"type":42,"tag":49,"props":126,"children":127},{},[128],{"type":47,"value":129},"To download dependencies explicitly, or to fix corrupted\u002Fbroken binaries:",{"type":42,"tag":67,"props":131,"children":133},{"className":69,"code":132,"language":71,"meta":72,"style":72},"npx webreel install\nnpx webreel install --force   # delete cached binaries and re-download\n",[134],{"type":42,"tag":75,"props":135,"children":136},{"__ignoreMap":72},[137,155],{"type":42,"tag":79,"props":138,"children":139},{"class":81,"line":82},[140,145,150],{"type":42,"tag":79,"props":141,"children":142},{"style":86},[143],{"type":47,"value":144},"npx",{"type":42,"tag":79,"props":146,"children":147},{"style":92},[148],{"type":47,"value":149}," webreel",{"type":42,"tag":79,"props":151,"children":152},{"style":92},[153],{"type":47,"value":154}," install\n",{"type":42,"tag":79,"props":156,"children":158},{"class":81,"line":157},2,[159,163,167,171,176],{"type":42,"tag":79,"props":160,"children":161},{"style":86},[162],{"type":47,"value":144},{"type":42,"tag":79,"props":164,"children":165},{"style":92},[166],{"type":47,"value":149},{"type":42,"tag":79,"props":168,"children":169},{"style":92},[170],{"type":47,"value":95},{"type":42,"tag":79,"props":172,"children":173},{"style":92},[174],{"type":47,"value":175}," --force",{"type":42,"tag":79,"props":177,"children":179},{"style":178},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[180],{"type":47,"value":181},"   # delete cached binaries and re-download\n",{"type":42,"tag":49,"props":183,"children":184},{},[185],{"type":47,"value":186},"To override the auto-downloaded binaries, set these environment variables:",{"type":42,"tag":188,"props":189,"children":190},"ul",{},[191,203,214],{"type":42,"tag":192,"props":193,"children":194},"li",{},[195,201],{"type":42,"tag":75,"props":196,"children":198},{"className":197},[],[199],{"type":47,"value":200},"CHROME_PATH",{"type":47,"value":202}," - path to a Chrome or Chromium binary (used for preview)",{"type":42,"tag":192,"props":204,"children":205},{},[206,212],{"type":42,"tag":75,"props":207,"children":209},{"className":208},[],[210],{"type":47,"value":211},"CHROME_HEADLESS_PATH",{"type":47,"value":213}," - path to a chrome-headless-shell binary (used for recording)",{"type":42,"tag":192,"props":215,"children":216},{},[217,223],{"type":42,"tag":75,"props":218,"children":220},{"className":219},[],[221],{"type":47,"value":222},"FFMPEG_PATH",{"type":47,"value":224}," - path to an ffmpeg binary",{"type":42,"tag":49,"props":226,"children":227},{},[228,230,236,238,244],{"type":47,"value":229},"If a recording fails with \"No inspectable targets\" or similar browser errors, the issue is almost certainly in the webreel config (wrong ",{"type":42,"tag":75,"props":231,"children":233},{"className":232},[],[234],{"type":47,"value":235},"waitFor",{"type":47,"value":237},", missing element, timing), not a missing browser. Check the config and use ",{"type":42,"tag":75,"props":239,"children":241},{"className":240},[],[242],{"type":47,"value":243},"--verbose",{"type":47,"value":245}," to debug.",{"type":42,"tag":55,"props":247,"children":249},{"id":248},"gitignore",[250],{"type":47,"value":251},".gitignore",{"type":42,"tag":49,"props":253,"children":254},{},[255,257,263,265,270],{"type":47,"value":256},"The ",{"type":42,"tag":75,"props":258,"children":260},{"className":259},[],[261],{"type":47,"value":262},".webreel",{"type":47,"value":264}," directory is created at the project root during recording (frames, intermediate files). Add it to ",{"type":42,"tag":75,"props":266,"children":268},{"className":267},[],[269],{"type":47,"value":251},{"type":47,"value":271},":",{"type":42,"tag":67,"props":273,"children":277},{"className":274,"code":276,"language":47},[275],"language-text",".webreel\n",[278],{"type":42,"tag":75,"props":279,"children":280},{"__ignoreMap":72},[281],{"type":47,"value":276},{"type":42,"tag":55,"props":283,"children":285},{"id":284},"quick-start",[286],{"type":47,"value":287},"Quick start",{"type":42,"tag":67,"props":289,"children":291},{"className":69,"code":290,"language":71,"meta":72,"style":72},"# Scaffold a config\nnpx webreel init --name my-demo --url https:\u002F\u002Fexample.com\n\n# Edit webreel.config.json with your steps\n\n# Preview in a visible browser (no recording)\nnpx webreel preview my-demo\n\n# Record the video\nnpx webreel record my-demo\n",[292],{"type":42,"tag":75,"props":293,"children":294},{"__ignoreMap":72},[295,303,339,349,358,366,375,397,405,414],{"type":42,"tag":79,"props":296,"children":297},{"class":81,"line":82},[298],{"type":42,"tag":79,"props":299,"children":300},{"style":178},[301],{"type":47,"value":302},"# Scaffold a config\n",{"type":42,"tag":79,"props":304,"children":305},{"class":81,"line":157},[306,310,314,319,324,329,334],{"type":42,"tag":79,"props":307,"children":308},{"style":86},[309],{"type":47,"value":144},{"type":42,"tag":79,"props":311,"children":312},{"style":92},[313],{"type":47,"value":149},{"type":42,"tag":79,"props":315,"children":316},{"style":92},[317],{"type":47,"value":318}," init",{"type":42,"tag":79,"props":320,"children":321},{"style":92},[322],{"type":47,"value":323}," --name",{"type":42,"tag":79,"props":325,"children":326},{"style":92},[327],{"type":47,"value":328}," my-demo",{"type":42,"tag":79,"props":330,"children":331},{"style":92},[332],{"type":47,"value":333}," --url",{"type":42,"tag":79,"props":335,"children":336},{"style":92},[337],{"type":47,"value":338}," https:\u002F\u002Fexample.com\n",{"type":42,"tag":79,"props":340,"children":342},{"class":81,"line":341},3,[343],{"type":42,"tag":79,"props":344,"children":346},{"emptyLinePlaceholder":345},true,[347],{"type":47,"value":348},"\n",{"type":42,"tag":79,"props":350,"children":352},{"class":81,"line":351},4,[353],{"type":42,"tag":79,"props":354,"children":355},{"style":178},[356],{"type":47,"value":357},"# Edit webreel.config.json with your steps\n",{"type":42,"tag":79,"props":359,"children":361},{"class":81,"line":360},5,[362],{"type":42,"tag":79,"props":363,"children":364},{"emptyLinePlaceholder":345},[365],{"type":47,"value":348},{"type":42,"tag":79,"props":367,"children":369},{"class":81,"line":368},6,[370],{"type":42,"tag":79,"props":371,"children":372},{"style":178},[373],{"type":47,"value":374},"# Preview in a visible browser (no recording)\n",{"type":42,"tag":79,"props":376,"children":378},{"class":81,"line":377},7,[379,383,387,392],{"type":42,"tag":79,"props":380,"children":381},{"style":86},[382],{"type":47,"value":144},{"type":42,"tag":79,"props":384,"children":385},{"style":92},[386],{"type":47,"value":149},{"type":42,"tag":79,"props":388,"children":389},{"style":92},[390],{"type":47,"value":391}," preview",{"type":42,"tag":79,"props":393,"children":394},{"style":92},[395],{"type":47,"value":396}," my-demo\n",{"type":42,"tag":79,"props":398,"children":400},{"class":81,"line":399},8,[401],{"type":42,"tag":79,"props":402,"children":403},{"emptyLinePlaceholder":345},[404],{"type":47,"value":348},{"type":42,"tag":79,"props":406,"children":408},{"class":81,"line":407},9,[409],{"type":42,"tag":79,"props":410,"children":411},{"style":178},[412],{"type":47,"value":413},"# Record the video\n",{"type":42,"tag":79,"props":415,"children":417},{"class":81,"line":416},10,[418,422,426,431],{"type":42,"tag":79,"props":419,"children":420},{"style":86},[421],{"type":47,"value":144},{"type":42,"tag":79,"props":423,"children":424},{"style":92},[425],{"type":47,"value":149},{"type":42,"tag":79,"props":427,"children":428},{"style":92},[429],{"type":47,"value":430}," record",{"type":42,"tag":79,"props":432,"children":433},{"style":92},[434],{"type":47,"value":396},{"type":42,"tag":49,"props":436,"children":437},{},[438,443,445,451,453,459,461,467],{"type":42,"tag":75,"props":439,"children":441},{"className":440},[],[442],{"type":47,"value":144},{"type":47,"value":444}," resolves to the locally installed version when webreel is in ",{"type":42,"tag":75,"props":446,"children":448},{"className":447},[],[449],{"type":47,"value":450},"devDependencies",{"type":47,"value":452},". Output lands in ",{"type":42,"tag":75,"props":454,"children":456},{"className":455},[],[457],{"type":47,"value":458},"videos\u002F",{"type":47,"value":460}," by default (configurable via ",{"type":42,"tag":75,"props":462,"children":464},{"className":463},[],[465],{"type":47,"value":466},"outDir",{"type":47,"value":468},").",{"type":42,"tag":55,"props":470,"children":472},{"id":471},"cli-commands",[473],{"type":47,"value":474},"CLI commands",{"type":42,"tag":476,"props":477,"children":479},"h3",{"id":478},"init",[480],{"type":47,"value":478},{"type":42,"tag":49,"props":482,"children":483},{},[484,486,492],{"type":47,"value":485},"Scaffold a new ",{"type":42,"tag":75,"props":487,"children":489},{"className":488},[],[490],{"type":47,"value":491},"webreel.config.json",{"type":47,"value":493},".",{"type":42,"tag":67,"props":495,"children":497},{"className":69,"code":496,"language":71,"meta":72,"style":72},"webreel init\nwebreel init --name login-flow --url https:\u002F\u002Fmyapp.com\nwebreel init --name hero -o hero.config.json\n",[498],{"type":42,"tag":75,"props":499,"children":500},{"__ignoreMap":72},[501,513,542],{"type":42,"tag":79,"props":502,"children":503},{"class":81,"line":82},[504,508],{"type":42,"tag":79,"props":505,"children":506},{"style":86},[507],{"type":47,"value":4},{"type":42,"tag":79,"props":509,"children":510},{"style":92},[511],{"type":47,"value":512}," init\n",{"type":42,"tag":79,"props":514,"children":515},{"class":81,"line":157},[516,520,524,528,533,537],{"type":42,"tag":79,"props":517,"children":518},{"style":86},[519],{"type":47,"value":4},{"type":42,"tag":79,"props":521,"children":522},{"style":92},[523],{"type":47,"value":318},{"type":42,"tag":79,"props":525,"children":526},{"style":92},[527],{"type":47,"value":323},{"type":42,"tag":79,"props":529,"children":530},{"style":92},[531],{"type":47,"value":532}," login-flow",{"type":42,"tag":79,"props":534,"children":535},{"style":92},[536],{"type":47,"value":333},{"type":42,"tag":79,"props":538,"children":539},{"style":92},[540],{"type":47,"value":541}," https:\u002F\u002Fmyapp.com\n",{"type":42,"tag":79,"props":543,"children":544},{"class":81,"line":341},[545,549,553,557,562,567],{"type":42,"tag":79,"props":546,"children":547},{"style":86},[548],{"type":47,"value":4},{"type":42,"tag":79,"props":550,"children":551},{"style":92},[552],{"type":47,"value":318},{"type":42,"tag":79,"props":554,"children":555},{"style":92},[556],{"type":47,"value":323},{"type":42,"tag":79,"props":558,"children":559},{"style":92},[560],{"type":47,"value":561}," hero",{"type":42,"tag":79,"props":563,"children":564},{"style":92},[565],{"type":47,"value":566}," -o",{"type":42,"tag":79,"props":568,"children":569},{"style":92},[570],{"type":47,"value":571}," hero.config.json\n",{"type":42,"tag":49,"props":573,"children":574},{},[575,577,583,585,591,593,599],{"type":47,"value":576},"Flags: ",{"type":42,"tag":75,"props":578,"children":580},{"className":579},[],[581],{"type":47,"value":582},"--name",{"type":47,"value":584}," (video name), ",{"type":42,"tag":75,"props":586,"children":588},{"className":587},[],[589],{"type":47,"value":590},"--url",{"type":47,"value":592}," (starting URL), ",{"type":42,"tag":75,"props":594,"children":596},{"className":595},[],[597],{"type":47,"value":598},"-o, --output",{"type":47,"value":600}," (output file path).",{"type":42,"tag":476,"props":602,"children":604},{"id":603},"record",[605],{"type":47,"value":603},{"type":42,"tag":49,"props":607,"children":608},{},[609],{"type":47,"value":610},"Record one or more videos.",{"type":42,"tag":67,"props":612,"children":614},{"className":69,"code":613,"language":71,"meta":72,"style":72},"webreel record                        # all videos in config\nwebreel record hero login             # specific videos by name\nwebreel record -c custom.config.json  # custom config path\nwebreel record --watch                # re-record on config change\nwebreel record --verbose              # log each step\nwebreel record --dry-run              # print resolved config only\nwebreel record --frames               # save raw JPEGs to .webreel\u002Fframes\u002F\n",[615],{"type":42,"tag":75,"props":616,"children":617},{"__ignoreMap":72},[618,634,659,685,706,727,748],{"type":42,"tag":79,"props":619,"children":620},{"class":81,"line":82},[621,625,629],{"type":42,"tag":79,"props":622,"children":623},{"style":86},[624],{"type":47,"value":4},{"type":42,"tag":79,"props":626,"children":627},{"style":92},[628],{"type":47,"value":430},{"type":42,"tag":79,"props":630,"children":631},{"style":178},[632],{"type":47,"value":633},"                        # all videos in config\n",{"type":42,"tag":79,"props":635,"children":636},{"class":81,"line":157},[637,641,645,649,654],{"type":42,"tag":79,"props":638,"children":639},{"style":86},[640],{"type":47,"value":4},{"type":42,"tag":79,"props":642,"children":643},{"style":92},[644],{"type":47,"value":430},{"type":42,"tag":79,"props":646,"children":647},{"style":92},[648],{"type":47,"value":561},{"type":42,"tag":79,"props":650,"children":651},{"style":92},[652],{"type":47,"value":653}," login",{"type":42,"tag":79,"props":655,"children":656},{"style":178},[657],{"type":47,"value":658},"             # specific videos by name\n",{"type":42,"tag":79,"props":660,"children":661},{"class":81,"line":341},[662,666,670,675,680],{"type":42,"tag":79,"props":663,"children":664},{"style":86},[665],{"type":47,"value":4},{"type":42,"tag":79,"props":667,"children":668},{"style":92},[669],{"type":47,"value":430},{"type":42,"tag":79,"props":671,"children":672},{"style":92},[673],{"type":47,"value":674}," -c",{"type":42,"tag":79,"props":676,"children":677},{"style":92},[678],{"type":47,"value":679}," custom.config.json",{"type":42,"tag":79,"props":681,"children":682},{"style":178},[683],{"type":47,"value":684},"  # custom config path\n",{"type":42,"tag":79,"props":686,"children":687},{"class":81,"line":351},[688,692,696,701],{"type":42,"tag":79,"props":689,"children":690},{"style":86},[691],{"type":47,"value":4},{"type":42,"tag":79,"props":693,"children":694},{"style":92},[695],{"type":47,"value":430},{"type":42,"tag":79,"props":697,"children":698},{"style":92},[699],{"type":47,"value":700}," --watch",{"type":42,"tag":79,"props":702,"children":703},{"style":178},[704],{"type":47,"value":705},"                # re-record on config change\n",{"type":42,"tag":79,"props":707,"children":708},{"class":81,"line":360},[709,713,717,722],{"type":42,"tag":79,"props":710,"children":711},{"style":86},[712],{"type":47,"value":4},{"type":42,"tag":79,"props":714,"children":715},{"style":92},[716],{"type":47,"value":430},{"type":42,"tag":79,"props":718,"children":719},{"style":92},[720],{"type":47,"value":721}," --verbose",{"type":42,"tag":79,"props":723,"children":724},{"style":178},[725],{"type":47,"value":726},"              # log each step\n",{"type":42,"tag":79,"props":728,"children":729},{"class":81,"line":368},[730,734,738,743],{"type":42,"tag":79,"props":731,"children":732},{"style":86},[733],{"type":47,"value":4},{"type":42,"tag":79,"props":735,"children":736},{"style":92},[737],{"type":47,"value":430},{"type":42,"tag":79,"props":739,"children":740},{"style":92},[741],{"type":47,"value":742}," --dry-run",{"type":42,"tag":79,"props":744,"children":745},{"style":178},[746],{"type":47,"value":747},"              # print resolved config only\n",{"type":42,"tag":79,"props":749,"children":750},{"class":81,"line":377},[751,755,759,764],{"type":42,"tag":79,"props":752,"children":753},{"style":86},[754],{"type":47,"value":4},{"type":42,"tag":79,"props":756,"children":757},{"style":92},[758],{"type":47,"value":430},{"type":42,"tag":79,"props":760,"children":761},{"style":92},[762],{"type":47,"value":763}," --frames",{"type":42,"tag":79,"props":765,"children":766},{"style":178},[767],{"type":47,"value":768},"               # save raw JPEGs to .webreel\u002Fframes\u002F\n",{"type":42,"tag":476,"props":770,"children":772},{"id":771},"preview",[773],{"type":47,"value":771},{"type":42,"tag":49,"props":775,"children":776},{},[777],{"type":47,"value":778},"Run steps in a visible browser without recording.",{"type":42,"tag":67,"props":780,"children":782},{"className":69,"code":781,"language":71,"meta":72,"style":72},"webreel preview\nwebreel preview hero --verbose\n",[783],{"type":42,"tag":75,"props":784,"children":785},{"__ignoreMap":72},[786,798],{"type":42,"tag":79,"props":787,"children":788},{"class":81,"line":82},[789,793],{"type":42,"tag":79,"props":790,"children":791},{"style":86},[792],{"type":47,"value":4},{"type":42,"tag":79,"props":794,"children":795},{"style":92},[796],{"type":47,"value":797}," preview\n",{"type":42,"tag":79,"props":799,"children":800},{"class":81,"line":157},[801,805,809,813],{"type":42,"tag":79,"props":802,"children":803},{"style":86},[804],{"type":47,"value":4},{"type":42,"tag":79,"props":806,"children":807},{"style":92},[808],{"type":47,"value":391},{"type":42,"tag":79,"props":810,"children":811},{"style":92},[812],{"type":47,"value":561},{"type":42,"tag":79,"props":814,"children":815},{"style":92},[816],{"type":47,"value":817}," --verbose\n",{"type":42,"tag":476,"props":819,"children":821},{"id":820},"composite",[822],{"type":47,"value":820},{"type":42,"tag":49,"props":824,"children":825},{},[826],{"type":47,"value":827},"Re-apply overlays (cursor, HUD, sfx) to existing raw video without re-recording. Useful for tweaking theme settings.",{"type":42,"tag":67,"props":829,"children":831},{"className":69,"code":830,"language":71,"meta":72,"style":72},"webreel composite\nwebreel composite hero\n",[832],{"type":42,"tag":75,"props":833,"children":834},{"__ignoreMap":72},[835,847],{"type":42,"tag":79,"props":836,"children":837},{"class":81,"line":82},[838,842],{"type":42,"tag":79,"props":839,"children":840},{"style":86},[841],{"type":47,"value":4},{"type":42,"tag":79,"props":843,"children":844},{"style":92},[845],{"type":47,"value":846}," composite\n",{"type":42,"tag":79,"props":848,"children":849},{"class":81,"line":157},[850,854,859],{"type":42,"tag":79,"props":851,"children":852},{"style":86},[853],{"type":47,"value":4},{"type":42,"tag":79,"props":855,"children":856},{"style":92},[857],{"type":47,"value":858}," composite",{"type":42,"tag":79,"props":860,"children":861},{"style":92},[862],{"type":47,"value":863}," hero\n",{"type":42,"tag":476,"props":865,"children":867},{"id":866},"install",[868],{"type":47,"value":866},{"type":42,"tag":49,"props":870,"children":871},{},[872,874,879],{"type":47,"value":873},"Download Chrome and ffmpeg to ",{"type":42,"tag":75,"props":875,"children":877},{"className":876},[],[878],{"type":47,"value":122},{"type":47,"value":880},". Also use this to fix corrupted or broken binaries.",{"type":42,"tag":67,"props":882,"children":884},{"className":69,"code":883,"language":71,"meta":72,"style":72},"webreel install\nwebreel install --force  # delete cached binaries and re-download\n",[885],{"type":42,"tag":75,"props":886,"children":887},{"__ignoreMap":72},[888,899],{"type":42,"tag":79,"props":889,"children":890},{"class":81,"line":82},[891,895],{"type":42,"tag":79,"props":892,"children":893},{"style":86},[894],{"type":47,"value":4},{"type":42,"tag":79,"props":896,"children":897},{"style":92},[898],{"type":47,"value":154},{"type":42,"tag":79,"props":900,"children":901},{"class":81,"line":157},[902,906,910,914],{"type":42,"tag":79,"props":903,"children":904},{"style":86},[905],{"type":47,"value":4},{"type":42,"tag":79,"props":907,"children":908},{"style":92},[909],{"type":47,"value":95},{"type":42,"tag":79,"props":911,"children":912},{"style":92},[913],{"type":47,"value":175},{"type":42,"tag":79,"props":915,"children":916},{"style":178},[917],{"type":47,"value":918},"  # delete cached binaries and re-download\n",{"type":42,"tag":476,"props":920,"children":922},{"id":921},"validate",[923],{"type":47,"value":921},{"type":42,"tag":49,"props":925,"children":926},{},[927],{"type":47,"value":928},"Check config for errors without running anything.",{"type":42,"tag":67,"props":930,"children":932},{"className":69,"code":931,"language":71,"meta":72,"style":72},"webreel validate\nwebreel validate -c custom.config.json\n",[933],{"type":42,"tag":75,"props":934,"children":935},{"__ignoreMap":72},[936,948],{"type":42,"tag":79,"props":937,"children":938},{"class":81,"line":82},[939,943],{"type":42,"tag":79,"props":940,"children":941},{"style":86},[942],{"type":47,"value":4},{"type":42,"tag":79,"props":944,"children":945},{"style":92},[946],{"type":47,"value":947}," validate\n",{"type":42,"tag":79,"props":949,"children":950},{"class":81,"line":157},[951,955,960,964],{"type":42,"tag":79,"props":952,"children":953},{"style":86},[954],{"type":47,"value":4},{"type":42,"tag":79,"props":956,"children":957},{"style":92},[958],{"type":47,"value":959}," validate",{"type":42,"tag":79,"props":961,"children":962},{"style":92},[963],{"type":47,"value":674},{"type":42,"tag":79,"props":965,"children":966},{"style":92},[967],{"type":47,"value":968}," custom.config.json\n",{"type":42,"tag":55,"props":970,"children":972},{"id":971},"config-structure",[973],{"type":47,"value":974},"Config structure",{"type":42,"tag":49,"props":976,"children":977},{},[978,980,985,987,993,995,1001,1002,1008,1009,1015,1017,1023],{"type":47,"value":979},"Config files are auto-discovered as ",{"type":42,"tag":75,"props":981,"children":983},{"className":982},[],[984],{"type":47,"value":491},{"type":47,"value":986}," (or ",{"type":42,"tag":75,"props":988,"children":990},{"className":989},[],[991],{"type":47,"value":992},".ts",{"type":47,"value":994},", ",{"type":42,"tag":75,"props":996,"children":998},{"className":997},[],[999],{"type":47,"value":1000},".mts",{"type":47,"value":994},{"type":42,"tag":75,"props":1003,"children":1005},{"className":1004},[],[1006],{"type":47,"value":1007},".js",{"type":47,"value":994},{"type":42,"tag":75,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":47,"value":1014},".mjs",{"type":47,"value":1016},"). Use ",{"type":42,"tag":75,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":47,"value":1022},"-c",{"type":47,"value":1024}," to specify a custom path.",{"type":42,"tag":476,"props":1026,"children":1028},{"id":1027},"top-level-fields",[1029],{"type":47,"value":1030},"Top-level fields",{"type":42,"tag":1032,"props":1033,"children":1034},"table",{},[1035,1059],{"type":42,"tag":1036,"props":1037,"children":1038},"thead",{},[1039],{"type":42,"tag":1040,"props":1041,"children":1042},"tr",{},[1043,1049,1054],{"type":42,"tag":1044,"props":1045,"children":1046},"th",{},[1047],{"type":47,"value":1048},"Field",{"type":42,"tag":1044,"props":1050,"children":1051},{},[1052],{"type":47,"value":1053},"Default",{"type":42,"tag":1044,"props":1055,"children":1056},{},[1057],{"type":47,"value":1058},"Description",{"type":42,"tag":1060,"props":1061,"children":1062},"tbody",{},[1063,1090,1115,1141,1173,1194,1215,1236,1257],{"type":42,"tag":1040,"props":1064,"children":1065},{},[1066,1076,1081],{"type":42,"tag":1067,"props":1068,"children":1069},"td",{},[1070],{"type":42,"tag":75,"props":1071,"children":1073},{"className":1072},[],[1074],{"type":47,"value":1075},"$schema",{"type":42,"tag":1067,"props":1077,"children":1078},{},[1079],{"type":47,"value":1080},"-",{"type":42,"tag":1067,"props":1082,"children":1083},{},[1084],{"type":42,"tag":75,"props":1085,"children":1087},{"className":1086},[],[1088],{"type":47,"value":1089},"\"https:\u002F\u002Fwebreel.dev\u002Fschema\u002Fv1.json\"",{"type":42,"tag":1040,"props":1091,"children":1092},{},[1093,1101,1110],{"type":42,"tag":1067,"props":1094,"children":1095},{},[1096],{"type":42,"tag":75,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":47,"value":466},{"type":42,"tag":1067,"props":1102,"children":1103},{},[1104],{"type":42,"tag":75,"props":1105,"children":1107},{"className":1106},[],[1108],{"type":47,"value":1109},"\"videos\u002F\"",{"type":42,"tag":1067,"props":1111,"children":1112},{},[1113],{"type":47,"value":1114},"Output directory for rendered videos",{"type":42,"tag":1040,"props":1116,"children":1117},{},[1118,1127,1136],{"type":42,"tag":1067,"props":1119,"children":1120},{},[1121],{"type":42,"tag":75,"props":1122,"children":1124},{"className":1123},[],[1125],{"type":47,"value":1126},"baseUrl",{"type":42,"tag":1067,"props":1128,"children":1129},{},[1130],{"type":42,"tag":75,"props":1131,"children":1133},{"className":1132},[],[1134],{"type":47,"value":1135},"\"\"",{"type":42,"tag":1067,"props":1137,"children":1138},{},[1139],{"type":47,"value":1140},"Base URL prepended to relative video URLs",{"type":42,"tag":1040,"props":1142,"children":1143},{},[1144,1153,1162],{"type":42,"tag":1067,"props":1145,"children":1146},{},[1147],{"type":42,"tag":75,"props":1148,"children":1150},{"className":1149},[],[1151],{"type":47,"value":1152},"viewport",{"type":42,"tag":1067,"props":1154,"children":1155},{},[1156],{"type":42,"tag":75,"props":1157,"children":1159},{"className":1158},[],[1160],{"type":47,"value":1161},"1080x1080",{"type":42,"tag":1067,"props":1163,"children":1164},{},[1165,1167],{"type":47,"value":1166},"Default viewport ",{"type":42,"tag":75,"props":1168,"children":1170},{"className":1169},[],[1171],{"type":47,"value":1172},"{ width, height }",{"type":42,"tag":1040,"props":1174,"children":1175},{},[1176,1185,1189],{"type":42,"tag":1067,"props":1177,"children":1178},{},[1179],{"type":42,"tag":75,"props":1180,"children":1182},{"className":1181},[],[1183],{"type":47,"value":1184},"theme",{"type":42,"tag":1067,"props":1186,"children":1187},{},[1188],{"type":47,"value":1080},{"type":42,"tag":1067,"props":1190,"children":1191},{},[1192],{"type":47,"value":1193},"Cursor and HUD overlay theme",{"type":42,"tag":1040,"props":1195,"children":1196},{},[1197,1206,1210],{"type":42,"tag":1067,"props":1198,"children":1199},{},[1200],{"type":42,"tag":75,"props":1201,"children":1203},{"className":1202},[],[1204],{"type":47,"value":1205},"sfx",{"type":42,"tag":1067,"props":1207,"children":1208},{},[1209],{"type":47,"value":1080},{"type":42,"tag":1067,"props":1211,"children":1212},{},[1213],{"type":47,"value":1214},"Sound effect settings",{"type":42,"tag":1040,"props":1216,"children":1217},{},[1218,1227,1231],{"type":42,"tag":1067,"props":1219,"children":1220},{},[1221],{"type":42,"tag":75,"props":1222,"children":1224},{"className":1223},[],[1225],{"type":47,"value":1226},"include",{"type":42,"tag":1067,"props":1228,"children":1229},{},[1230],{"type":47,"value":1080},{"type":42,"tag":1067,"props":1232,"children":1233},{},[1234],{"type":47,"value":1235},"Array of step file paths prepended to all videos",{"type":42,"tag":1040,"props":1237,"children":1238},{},[1239,1248,1252],{"type":42,"tag":1067,"props":1240,"children":1241},{},[1242],{"type":42,"tag":75,"props":1243,"children":1245},{"className":1244},[],[1246],{"type":47,"value":1247},"defaultDelay",{"type":42,"tag":1067,"props":1249,"children":1250},{},[1251],{"type":47,"value":1080},{"type":42,"tag":1067,"props":1253,"children":1254},{},[1255],{"type":47,"value":1256},"Default delay (ms) appended after each step",{"type":42,"tag":1040,"props":1258,"children":1259},{},[1260,1269,1273],{"type":42,"tag":1067,"props":1261,"children":1262},{},[1263],{"type":42,"tag":75,"props":1264,"children":1266},{"className":1265},[],[1267],{"type":47,"value":1268},"clickDwell",{"type":42,"tag":1067,"props":1270,"children":1271},{},[1272],{"type":47,"value":1080},{"type":42,"tag":1067,"props":1274,"children":1275},{},[1276],{"type":47,"value":1277},"Cursor dwell time (ms) before a click",{"type":42,"tag":476,"props":1279,"children":1281},{"id":1280},"per-video-fields",[1282],{"type":47,"value":1283},"Per-video fields",{"type":42,"tag":49,"props":1285,"children":1286},{},[1287,1289,1295],{"type":47,"value":1288},"Each entry in the ",{"type":42,"tag":75,"props":1290,"children":1292},{"className":1291},[],[1293],{"type":47,"value":1294},"videos",{"type":47,"value":1296}," map supports:",{"type":42,"tag":1032,"props":1298,"children":1299},{},[1300,1318],{"type":42,"tag":1036,"props":1301,"children":1302},{},[1303],{"type":42,"tag":1040,"props":1304,"children":1305},{},[1306,1310,1314],{"type":42,"tag":1044,"props":1307,"children":1308},{},[1309],{"type":47,"value":1048},{"type":42,"tag":1044,"props":1311,"children":1312},{},[1313],{"type":47,"value":1053},{"type":42,"tag":1044,"props":1315,"children":1316},{},[1317],{"type":47,"value":1058},{"type":42,"tag":1060,"props":1319,"children":1320},{},[1321,1350,1376,1397,1417,1464,1496,1516,1536,1556,1576,1596,1622,1648],{"type":42,"tag":1040,"props":1322,"children":1323},{},[1324,1333,1338],{"type":42,"tag":1067,"props":1325,"children":1326},{},[1327],{"type":42,"tag":75,"props":1328,"children":1330},{"className":1329},[],[1331],{"type":47,"value":1332},"url",{"type":42,"tag":1067,"props":1334,"children":1335},{},[1336],{"type":47,"value":1337},"required",{"type":42,"tag":1067,"props":1339,"children":1340},{},[1341,1343,1348],{"type":47,"value":1342},"URL to open (absolute or relative to ",{"type":42,"tag":75,"props":1344,"children":1346},{"className":1345},[],[1347],{"type":47,"value":1126},{"type":47,"value":1349},")",{"type":42,"tag":1040,"props":1351,"children":1352},{},[1353,1361,1366],{"type":42,"tag":1067,"props":1354,"children":1355},{},[1356],{"type":42,"tag":75,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":47,"value":1152},{"type":42,"tag":1067,"props":1362,"children":1363},{},[1364],{"type":47,"value":1365},"inherited",{"type":42,"tag":1067,"props":1367,"children":1368},{},[1369,1371],{"type":47,"value":1370},"Override viewport ",{"type":42,"tag":75,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":47,"value":1172},{"type":42,"tag":1040,"props":1377,"children":1378},{},[1379,1388,1392],{"type":42,"tag":1067,"props":1380,"children":1381},{},[1382],{"type":42,"tag":75,"props":1383,"children":1385},{"className":1384},[],[1386],{"type":47,"value":1387},"zoom",{"type":42,"tag":1067,"props":1389,"children":1390},{},[1391],{"type":47,"value":1080},{"type":42,"tag":1067,"props":1393,"children":1394},{},[1395],{"type":47,"value":1396},"CSS zoom factor",{"type":42,"tag":1040,"props":1398,"children":1399},{},[1400,1408,1412],{"type":42,"tag":1067,"props":1401,"children":1402},{},[1403],{"type":42,"tag":75,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":47,"value":235},{"type":42,"tag":1067,"props":1409,"children":1410},{},[1411],{"type":47,"value":1080},{"type":42,"tag":1067,"props":1413,"children":1414},{},[1415],{"type":47,"value":1416},"Selector or text to wait for before starting steps",{"type":42,"tag":1040,"props":1418,"children":1419},{},[1420,1429,1438],{"type":42,"tag":1067,"props":1421,"children":1422},{},[1423],{"type":42,"tag":75,"props":1424,"children":1426},{"className":1425},[],[1427],{"type":47,"value":1428},"output",{"type":42,"tag":1067,"props":1430,"children":1431},{},[1432],{"type":42,"tag":75,"props":1433,"children":1435},{"className":1434},[],[1436],{"type":47,"value":1437},"\"\u003Cname>.mp4\"",{"type":42,"tag":1067,"props":1439,"children":1440},{},[1441,1443,1449,1450,1456,1457,1463],{"type":47,"value":1442},"Output path (",{"type":42,"tag":75,"props":1444,"children":1446},{"className":1445},[],[1447],{"type":47,"value":1448},".mp4",{"type":47,"value":994},{"type":42,"tag":75,"props":1451,"children":1453},{"className":1452},[],[1454],{"type":47,"value":1455},".gif",{"type":47,"value":994},{"type":42,"tag":75,"props":1458,"children":1460},{"className":1459},[],[1461],{"type":47,"value":1462},".webm",{"type":47,"value":1349},{"type":42,"tag":1040,"props":1465,"children":1466},{},[1467,1476,1485],{"type":42,"tag":1067,"props":1468,"children":1469},{},[1470],{"type":42,"tag":75,"props":1471,"children":1473},{"className":1472},[],[1474],{"type":47,"value":1475},"thumbnail",{"type":42,"tag":1067,"props":1477,"children":1478},{},[1479],{"type":42,"tag":75,"props":1480,"children":1482},{"className":1481},[],[1483],{"type":47,"value":1484},"{ time: 0 }",{"type":42,"tag":1067,"props":1486,"children":1487},{},[1488,1490],{"type":47,"value":1489},"Thumbnail config, or ",{"type":42,"tag":75,"props":1491,"children":1493},{"className":1492},[],[1494],{"type":47,"value":1495},"{ enabled: false }",{"type":42,"tag":1040,"props":1497,"children":1498},{},[1499,1507,1511],{"type":42,"tag":1067,"props":1500,"children":1501},{},[1502],{"type":42,"tag":75,"props":1503,"children":1505},{"className":1504},[],[1506],{"type":47,"value":1226},{"type":42,"tag":1067,"props":1508,"children":1509},{},[1510],{"type":47,"value":1365},{"type":42,"tag":1067,"props":1512,"children":1513},{},[1514],{"type":47,"value":1515},"Step files to prepend",{"type":42,"tag":1040,"props":1517,"children":1518},{},[1519,1527,1531],{"type":42,"tag":1067,"props":1520,"children":1521},{},[1522],{"type":42,"tag":75,"props":1523,"children":1525},{"className":1524},[],[1526],{"type":47,"value":1184},{"type":42,"tag":1067,"props":1528,"children":1529},{},[1530],{"type":47,"value":1365},{"type":42,"tag":1067,"props":1532,"children":1533},{},[1534],{"type":47,"value":1535},"Override theme",{"type":42,"tag":1040,"props":1537,"children":1538},{},[1539,1547,1551],{"type":42,"tag":1067,"props":1540,"children":1541},{},[1542],{"type":42,"tag":75,"props":1543,"children":1545},{"className":1544},[],[1546],{"type":47,"value":1205},{"type":42,"tag":1067,"props":1548,"children":1549},{},[1550],{"type":47,"value":1365},{"type":42,"tag":1067,"props":1552,"children":1553},{},[1554],{"type":47,"value":1555},"Override sound effects",{"type":42,"tag":1040,"props":1557,"children":1558},{},[1559,1567,1571],{"type":42,"tag":1067,"props":1560,"children":1561},{},[1562],{"type":42,"tag":75,"props":1563,"children":1565},{"className":1564},[],[1566],{"type":47,"value":1247},{"type":42,"tag":1067,"props":1568,"children":1569},{},[1570],{"type":47,"value":1365},{"type":42,"tag":1067,"props":1572,"children":1573},{},[1574],{"type":47,"value":1575},"Override default delay",{"type":42,"tag":1040,"props":1577,"children":1578},{},[1579,1587,1591],{"type":42,"tag":1067,"props":1580,"children":1581},{},[1582],{"type":42,"tag":75,"props":1583,"children":1585},{"className":1584},[],[1586],{"type":47,"value":1268},{"type":42,"tag":1067,"props":1588,"children":1589},{},[1590],{"type":47,"value":1365},{"type":42,"tag":1067,"props":1592,"children":1593},{},[1594],{"type":47,"value":1595},"Override click dwell",{"type":42,"tag":1040,"props":1597,"children":1598},{},[1599,1608,1617],{"type":42,"tag":1067,"props":1600,"children":1601},{},[1602],{"type":42,"tag":75,"props":1603,"children":1605},{"className":1604},[],[1606],{"type":47,"value":1607},"fps",{"type":42,"tag":1067,"props":1609,"children":1610},{},[1611],{"type":42,"tag":75,"props":1612,"children":1614},{"className":1613},[],[1615],{"type":47,"value":1616},"60",{"type":42,"tag":1067,"props":1618,"children":1619},{},[1620],{"type":47,"value":1621},"Frame rate",{"type":42,"tag":1040,"props":1623,"children":1624},{},[1625,1634,1643],{"type":42,"tag":1067,"props":1626,"children":1627},{},[1628],{"type":42,"tag":75,"props":1629,"children":1631},{"className":1630},[],[1632],{"type":47,"value":1633},"quality",{"type":42,"tag":1067,"props":1635,"children":1636},{},[1637],{"type":42,"tag":75,"props":1638,"children":1640},{"className":1639},[],[1641],{"type":47,"value":1642},"80",{"type":42,"tag":1067,"props":1644,"children":1645},{},[1646],{"type":47,"value":1647},"Encoding quality (1-100)",{"type":42,"tag":1040,"props":1649,"children":1650},{},[1651,1660,1664],{"type":42,"tag":1067,"props":1652,"children":1653},{},[1654],{"type":42,"tag":75,"props":1655,"children":1657},{"className":1656},[],[1658],{"type":47,"value":1659},"steps",{"type":42,"tag":1067,"props":1661,"children":1662},{},[1663],{"type":47,"value":1337},{"type":42,"tag":1067,"props":1665,"children":1666},{},[1667],{"type":47,"value":1668},"Array of step objects",{"type":42,"tag":476,"props":1670,"children":1672},{"id":1671},"videos-map",[1673],{"type":47,"value":1674},"Videos map",{"type":42,"tag":49,"props":1676,"children":1677},{},[1678],{"type":47,"value":1679},"Videos are keyed by name in the config:",{"type":42,"tag":67,"props":1681,"children":1685},{"className":1682,"code":1683,"language":1684,"meta":72,"style":72},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"videos\": {\n    \"hero\": { \"url\": \"...\", \"steps\": [...] },\n    \"login\": { \"url\": \"...\", \"steps\": [...] }\n  }\n}\n","json",[1686],{"type":42,"tag":75,"props":1687,"children":1688},{"__ignoreMap":72},[1689,1698,1725,1823,1912,1920],{"type":42,"tag":79,"props":1690,"children":1691},{"class":81,"line":82},[1692],{"type":42,"tag":79,"props":1693,"children":1695},{"style":1694},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1696],{"type":47,"value":1697},"{\n",{"type":42,"tag":79,"props":1699,"children":1700},{"class":81,"line":157},[1701,1706,1711,1716,1720],{"type":42,"tag":79,"props":1702,"children":1703},{"style":1694},[1704],{"type":47,"value":1705},"  \"",{"type":42,"tag":79,"props":1707,"children":1709},{"style":1708},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1710],{"type":47,"value":1294},{"type":42,"tag":79,"props":1712,"children":1713},{"style":1694},[1714],{"type":47,"value":1715},"\"",{"type":42,"tag":79,"props":1717,"children":1718},{"style":1694},[1719],{"type":47,"value":271},{"type":42,"tag":79,"props":1721,"children":1722},{"style":1694},[1723],{"type":47,"value":1724}," {\n",{"type":42,"tag":79,"props":1726,"children":1727},{"class":81,"line":341},[1728,1733,1738,1742,1746,1751,1756,1761,1765,1769,1773,1778,1782,1787,1791,1795,1799,1803,1808,1813,1818],{"type":42,"tag":79,"props":1729,"children":1730},{"style":1694},[1731],{"type":47,"value":1732},"    \"",{"type":42,"tag":79,"props":1734,"children":1735},{"style":86},[1736],{"type":47,"value":1737},"hero",{"type":42,"tag":79,"props":1739,"children":1740},{"style":1694},[1741],{"type":47,"value":1715},{"type":42,"tag":79,"props":1743,"children":1744},{"style":1694},[1745],{"type":47,"value":271},{"type":42,"tag":79,"props":1747,"children":1748},{"style":1694},[1749],{"type":47,"value":1750}," {",{"type":42,"tag":79,"props":1752,"children":1753},{"style":1694},[1754],{"type":47,"value":1755}," \"",{"type":42,"tag":79,"props":1757,"children":1759},{"style":1758},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1760],{"type":47,"value":1332},{"type":42,"tag":79,"props":1762,"children":1763},{"style":1694},[1764],{"type":47,"value":1715},{"type":42,"tag":79,"props":1766,"children":1767},{"style":1694},[1768],{"type":47,"value":271},{"type":42,"tag":79,"props":1770,"children":1771},{"style":1694},[1772],{"type":47,"value":1755},{"type":42,"tag":79,"props":1774,"children":1775},{"style":92},[1776],{"type":47,"value":1777},"...",{"type":42,"tag":79,"props":1779,"children":1780},{"style":1694},[1781],{"type":47,"value":1715},{"type":42,"tag":79,"props":1783,"children":1784},{"style":1694},[1785],{"type":47,"value":1786},",",{"type":42,"tag":79,"props":1788,"children":1789},{"style":1694},[1790],{"type":47,"value":1755},{"type":42,"tag":79,"props":1792,"children":1793},{"style":1758},[1794],{"type":47,"value":1659},{"type":42,"tag":79,"props":1796,"children":1797},{"style":1694},[1798],{"type":47,"value":1715},{"type":42,"tag":79,"props":1800,"children":1801},{"style":1694},[1802],{"type":47,"value":271},{"type":42,"tag":79,"props":1804,"children":1805},{"style":1694},[1806],{"type":47,"value":1807}," [",{"type":42,"tag":79,"props":1809,"children":1811},{"style":1810},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1812],{"type":47,"value":1777},{"type":42,"tag":79,"props":1814,"children":1815},{"style":1694},[1816],{"type":47,"value":1817},"]",{"type":42,"tag":79,"props":1819,"children":1820},{"style":1694},[1821],{"type":47,"value":1822}," },\n",{"type":42,"tag":79,"props":1824,"children":1825},{"class":81,"line":351},[1826,1830,1835,1839,1843,1847,1851,1855,1859,1863,1867,1871,1875,1879,1883,1887,1891,1895,1899,1903,1907],{"type":42,"tag":79,"props":1827,"children":1828},{"style":1694},[1829],{"type":47,"value":1732},{"type":42,"tag":79,"props":1831,"children":1832},{"style":86},[1833],{"type":47,"value":1834},"login",{"type":42,"tag":79,"props":1836,"children":1837},{"style":1694},[1838],{"type":47,"value":1715},{"type":42,"tag":79,"props":1840,"children":1841},{"style":1694},[1842],{"type":47,"value":271},{"type":42,"tag":79,"props":1844,"children":1845},{"style":1694},[1846],{"type":47,"value":1750},{"type":42,"tag":79,"props":1848,"children":1849},{"style":1694},[1850],{"type":47,"value":1755},{"type":42,"tag":79,"props":1852,"children":1853},{"style":1758},[1854],{"type":47,"value":1332},{"type":42,"tag":79,"props":1856,"children":1857},{"style":1694},[1858],{"type":47,"value":1715},{"type":42,"tag":79,"props":1860,"children":1861},{"style":1694},[1862],{"type":47,"value":271},{"type":42,"tag":79,"props":1864,"children":1865},{"style":1694},[1866],{"type":47,"value":1755},{"type":42,"tag":79,"props":1868,"children":1869},{"style":92},[1870],{"type":47,"value":1777},{"type":42,"tag":79,"props":1872,"children":1873},{"style":1694},[1874],{"type":47,"value":1715},{"type":42,"tag":79,"props":1876,"children":1877},{"style":1694},[1878],{"type":47,"value":1786},{"type":42,"tag":79,"props":1880,"children":1881},{"style":1694},[1882],{"type":47,"value":1755},{"type":42,"tag":79,"props":1884,"children":1885},{"style":1758},[1886],{"type":47,"value":1659},{"type":42,"tag":79,"props":1888,"children":1889},{"style":1694},[1890],{"type":47,"value":1715},{"type":42,"tag":79,"props":1892,"children":1893},{"style":1694},[1894],{"type":47,"value":271},{"type":42,"tag":79,"props":1896,"children":1897},{"style":1694},[1898],{"type":47,"value":1807},{"type":42,"tag":79,"props":1900,"children":1901},{"style":1810},[1902],{"type":47,"value":1777},{"type":42,"tag":79,"props":1904,"children":1905},{"style":1694},[1906],{"type":47,"value":1817},{"type":42,"tag":79,"props":1908,"children":1909},{"style":1694},[1910],{"type":47,"value":1911}," }\n",{"type":42,"tag":79,"props":1913,"children":1914},{"class":81,"line":360},[1915],{"type":42,"tag":79,"props":1916,"children":1917},{"style":1694},[1918],{"type":47,"value":1919},"  }\n",{"type":42,"tag":79,"props":1921,"children":1922},{"class":81,"line":368},[1923],{"type":42,"tag":79,"props":1924,"children":1925},{"style":1694},[1926],{"type":47,"value":1927},"}\n",{"type":42,"tag":49,"props":1929,"children":1930},{},[1931,1933,1939],{"type":47,"value":1932},"Record specific videos by name: ",{"type":42,"tag":75,"props":1934,"children":1936},{"className":1935},[],[1937],{"type":47,"value":1938},"webreel record hero login",{"type":47,"value":493},{"type":42,"tag":55,"props":1941,"children":1943},{"id":1942},"step-types",[1944],{"type":47,"value":1945},"Step types",{"type":42,"tag":49,"props":1947,"children":1948},{},[1949,1951,1957,1959,1965,1966,1972,1974,1980],{"type":47,"value":1950},"Each step has an ",{"type":42,"tag":75,"props":1952,"children":1954},{"className":1953},[],[1955],{"type":47,"value":1956},"action",{"type":47,"value":1958}," field. Most steps accept optional ",{"type":42,"tag":75,"props":1960,"children":1962},{"className":1961},[],[1963],{"type":47,"value":1964},"label",{"type":47,"value":994},{"type":42,"tag":75,"props":1967,"children":1969},{"className":1968},[],[1970],{"type":47,"value":1971},"delay",{"type":47,"value":1973}," (ms after step), and ",{"type":42,"tag":75,"props":1975,"children":1977},{"className":1976},[],[1978],{"type":47,"value":1979},"description",{"type":47,"value":1981}," fields.",{"type":42,"tag":1032,"props":1983,"children":1984},{},[1985,2006],{"type":42,"tag":1036,"props":1986,"children":1987},{},[1988],{"type":42,"tag":1040,"props":1989,"children":1990},{},[1991,1996,2001],{"type":42,"tag":1044,"props":1992,"children":1993},{},[1994],{"type":47,"value":1995},"Action",{"type":42,"tag":1044,"props":1997,"children":1998},{},[1999],{"type":47,"value":2000},"Key fields",{"type":42,"tag":1044,"props":2002,"children":2003},{},[2004],{"type":47,"value":2005},"Purpose",{"type":42,"tag":1060,"props":2007,"children":2008},{},[2009,2035,2082,2126,2165,2200,2239,2277,2314,2339,2376,2408],{"type":42,"tag":1040,"props":2010,"children":2011},{},[2012,2021,2030],{"type":42,"tag":1067,"props":2013,"children":2014},{},[2015],{"type":42,"tag":75,"props":2016,"children":2018},{"className":2017},[],[2019],{"type":47,"value":2020},"pause",{"type":42,"tag":1067,"props":2022,"children":2023},{},[2024],{"type":42,"tag":75,"props":2025,"children":2027},{"className":2026},[],[2028],{"type":47,"value":2029},"ms",{"type":42,"tag":1067,"props":2031,"children":2032},{},[2033],{"type":47,"value":2034},"Wait for a duration",{"type":42,"tag":1040,"props":2036,"children":2037},{},[2038,2047,2077],{"type":42,"tag":1067,"props":2039,"children":2040},{},[2041],{"type":42,"tag":75,"props":2042,"children":2044},{"className":2043},[],[2045],{"type":47,"value":2046},"click",{"type":42,"tag":1067,"props":2048,"children":2049},{},[2050,2055,2057,2063,2064,2070,2071],{"type":42,"tag":75,"props":2051,"children":2053},{"className":2052},[],[2054],{"type":47,"value":47},{"type":47,"value":2056}," or ",{"type":42,"tag":75,"props":2058,"children":2060},{"className":2059},[],[2061],{"type":47,"value":2062},"selector",{"type":47,"value":994},{"type":42,"tag":75,"props":2065,"children":2067},{"className":2066},[],[2068],{"type":47,"value":2069},"within",{"type":47,"value":994},{"type":42,"tag":75,"props":2072,"children":2074},{"className":2073},[],[2075],{"type":47,"value":2076},"modifiers",{"type":42,"tag":1067,"props":2078,"children":2079},{},[2080],{"type":47,"value":2081},"Click an element",{"type":42,"tag":1040,"props":2083,"children":2084},{},[2085,2094,2121],{"type":42,"tag":1067,"props":2086,"children":2087},{},[2088],{"type":42,"tag":75,"props":2089,"children":2091},{"className":2090},[],[2092],{"type":47,"value":2093},"type",{"type":42,"tag":1067,"props":2095,"children":2096},{},[2097,2102,2103,2108,2109,2114,2115],{"type":42,"tag":75,"props":2098,"children":2100},{"className":2099},[],[2101],{"type":47,"value":47},{"type":47,"value":994},{"type":42,"tag":75,"props":2104,"children":2106},{"className":2105},[],[2107],{"type":47,"value":2062},{"type":47,"value":994},{"type":42,"tag":75,"props":2110,"children":2112},{"className":2111},[],[2113],{"type":47,"value":2069},{"type":47,"value":994},{"type":42,"tag":75,"props":2116,"children":2118},{"className":2117},[],[2119],{"type":47,"value":2120},"charDelay",{"type":42,"tag":1067,"props":2122,"children":2123},{},[2124],{"type":47,"value":2125},"Type text into an input",{"type":42,"tag":1040,"props":2127,"children":2128},{},[2129,2138,2153],{"type":42,"tag":1067,"props":2130,"children":2131},{},[2132],{"type":42,"tag":75,"props":2133,"children":2135},{"className":2134},[],[2136],{"type":47,"value":2137},"key",{"type":42,"tag":1067,"props":2139,"children":2140},{},[2141,2146,2147],{"type":42,"tag":75,"props":2142,"children":2144},{"className":2143},[],[2145],{"type":47,"value":2137},{"type":47,"value":994},{"type":42,"tag":75,"props":2148,"children":2150},{"className":2149},[],[2151],{"type":47,"value":2152},"target",{"type":42,"tag":1067,"props":2154,"children":2155},{},[2156,2158,2164],{"type":47,"value":2157},"Press a key combo (e.g. ",{"type":42,"tag":75,"props":2159,"children":2161},{"className":2160},[],[2162],{"type":47,"value":2163},"\"cmd+s\"",{"type":47,"value":1349},{"type":42,"tag":1040,"props":2166,"children":2167},{},[2168,2177,2195],{"type":42,"tag":1067,"props":2169,"children":2170},{},[2171],{"type":42,"tag":75,"props":2172,"children":2174},{"className":2173},[],[2175],{"type":47,"value":2176},"drag",{"type":42,"tag":1067,"props":2178,"children":2179},{},[2180,2186,2187,2193],{"type":42,"tag":75,"props":2181,"children":2183},{"className":2182},[],[2184],{"type":47,"value":2185},"from",{"type":47,"value":994},{"type":42,"tag":75,"props":2188,"children":2190},{"className":2189},[],[2191],{"type":47,"value":2192},"to",{"type":47,"value":2194}," (element targets)",{"type":42,"tag":1067,"props":2196,"children":2197},{},[2198],{"type":47,"value":2199},"Drag between two elements",{"type":42,"tag":1040,"props":2201,"children":2202},{},[2203,2212,2234],{"type":42,"tag":1067,"props":2204,"children":2205},{},[2206],{"type":42,"tag":75,"props":2207,"children":2209},{"className":2208},[],[2210],{"type":47,"value":2211},"scroll",{"type":42,"tag":1067,"props":2213,"children":2214},{},[2215,2221,2222,2228,2229],{"type":42,"tag":75,"props":2216,"children":2218},{"className":2217},[],[2219],{"type":47,"value":2220},"x",{"type":47,"value":994},{"type":42,"tag":75,"props":2223,"children":2225},{"className":2224},[],[2226],{"type":47,"value":2227},"y",{"type":47,"value":994},{"type":42,"tag":75,"props":2230,"children":2232},{"className":2231},[],[2233],{"type":47,"value":2062},{"type":42,"tag":1067,"props":2235,"children":2236},{},[2237],{"type":47,"value":2238},"Scroll the page or an element",{"type":42,"tag":1040,"props":2240,"children":2241},{},[2242,2251,2272],{"type":42,"tag":1067,"props":2243,"children":2244},{},[2245],{"type":42,"tag":75,"props":2246,"children":2248},{"className":2247},[],[2249],{"type":47,"value":2250},"wait",{"type":42,"tag":1067,"props":2252,"children":2253},{},[2254,2259,2260,2265,2266],{"type":42,"tag":75,"props":2255,"children":2257},{"className":2256},[],[2258],{"type":47,"value":2062},{"type":47,"value":2056},{"type":42,"tag":75,"props":2261,"children":2263},{"className":2262},[],[2264],{"type":47,"value":47},{"type":47,"value":994},{"type":42,"tag":75,"props":2267,"children":2269},{"className":2268},[],[2270],{"type":47,"value":2271},"timeout",{"type":42,"tag":1067,"props":2273,"children":2274},{},[2275],{"type":47,"value":2276},"Wait for an element to appear",{"type":42,"tag":1040,"props":2278,"children":2279},{},[2280,2289,2309],{"type":42,"tag":1067,"props":2281,"children":2282},{},[2283],{"type":42,"tag":75,"props":2284,"children":2286},{"className":2285},[],[2287],{"type":47,"value":2288},"moveTo",{"type":42,"tag":1067,"props":2290,"children":2291},{},[2292,2297,2298,2303,2304],{"type":42,"tag":75,"props":2293,"children":2295},{"className":2294},[],[2296],{"type":47,"value":47},{"type":47,"value":2056},{"type":42,"tag":75,"props":2299,"children":2301},{"className":2300},[],[2302],{"type":47,"value":2062},{"type":47,"value":994},{"type":42,"tag":75,"props":2305,"children":2307},{"className":2306},[],[2308],{"type":47,"value":2069},{"type":42,"tag":1067,"props":2310,"children":2311},{},[2312],{"type":47,"value":2313},"Move cursor to an element",{"type":42,"tag":1040,"props":2315,"children":2316},{},[2317,2326,2334],{"type":42,"tag":1067,"props":2318,"children":2319},{},[2320],{"type":42,"tag":75,"props":2321,"children":2323},{"className":2322},[],[2324],{"type":47,"value":2325},"navigate",{"type":42,"tag":1067,"props":2327,"children":2328},{},[2329],{"type":42,"tag":75,"props":2330,"children":2332},{"className":2331},[],[2333],{"type":47,"value":1332},{"type":42,"tag":1067,"props":2335,"children":2336},{},[2337],{"type":47,"value":2338},"Navigate to a new URL",{"type":42,"tag":1040,"props":2340,"children":2341},{},[2342,2351,2371],{"type":42,"tag":1067,"props":2343,"children":2344},{},[2345],{"type":42,"tag":75,"props":2346,"children":2348},{"className":2347},[],[2349],{"type":47,"value":2350},"hover",{"type":42,"tag":1067,"props":2352,"children":2353},{},[2354,2359,2360,2365,2366],{"type":42,"tag":75,"props":2355,"children":2357},{"className":2356},[],[2358],{"type":47,"value":47},{"type":47,"value":2056},{"type":42,"tag":75,"props":2361,"children":2363},{"className":2362},[],[2364],{"type":47,"value":2062},{"type":47,"value":994},{"type":42,"tag":75,"props":2367,"children":2369},{"className":2368},[],[2370],{"type":47,"value":2069},{"type":42,"tag":1067,"props":2372,"children":2373},{},[2374],{"type":47,"value":2375},"Hover over an element",{"type":42,"tag":1040,"props":2377,"children":2378},{},[2379,2388,2403],{"type":42,"tag":1067,"props":2380,"children":2381},{},[2382],{"type":42,"tag":75,"props":2383,"children":2385},{"className":2384},[],[2386],{"type":47,"value":2387},"select",{"type":42,"tag":1067,"props":2389,"children":2390},{},[2391,2396,2397],{"type":42,"tag":75,"props":2392,"children":2394},{"className":2393},[],[2395],{"type":47,"value":2062},{"type":47,"value":994},{"type":42,"tag":75,"props":2398,"children":2400},{"className":2399},[],[2401],{"type":47,"value":2402},"value",{"type":42,"tag":1067,"props":2404,"children":2405},{},[2406],{"type":47,"value":2407},"Select a dropdown value",{"type":42,"tag":1040,"props":2409,"children":2410},{},[2411,2420,2428],{"type":42,"tag":1067,"props":2412,"children":2413},{},[2414],{"type":42,"tag":75,"props":2415,"children":2417},{"className":2416},[],[2418],{"type":47,"value":2419},"screenshot",{"type":42,"tag":1067,"props":2421,"children":2422},{},[2423],{"type":42,"tag":75,"props":2424,"children":2426},{"className":2425},[],[2427],{"type":47,"value":1428},{"type":42,"tag":1067,"props":2429,"children":2430},{},[2431],{"type":47,"value":2432},"Capture a PNG screenshot",{"type":42,"tag":49,"props":2434,"children":2435},{},[2436,2438,2444],{"type":47,"value":2437},"For full field details on every step type, see ",{"type":42,"tag":2439,"props":2440,"children":2442},"a",{"href":2441},"steps-reference.md",[2443],{"type":47,"value":2441},{"type":47,"value":493},{"type":42,"tag":55,"props":2446,"children":2448},{"id":2447},"element-targeting",[2449],{"type":47,"value":2450},"Element targeting",{"type":42,"tag":49,"props":2452,"children":2453},{},[2454],{"type":47,"value":2455},"Many steps target elements using these fields:",{"type":42,"tag":188,"props":2457,"children":2458},{},[2459,2469,2479],{"type":42,"tag":192,"props":2460,"children":2461},{},[2462,2467],{"type":42,"tag":75,"props":2463,"children":2465},{"className":2464},[],[2466],{"type":47,"value":47},{"type":47,"value":2468}," - match by visible text content",{"type":42,"tag":192,"props":2470,"children":2471},{},[2472,2477],{"type":42,"tag":75,"props":2473,"children":2475},{"className":2474},[],[2476],{"type":47,"value":2062},{"type":47,"value":2478}," - match by CSS selector",{"type":42,"tag":192,"props":2480,"children":2481},{},[2482,2487],{"type":42,"tag":75,"props":2483,"children":2485},{"className":2484},[],[2486],{"type":47,"value":2069},{"type":47,"value":2488}," - narrow the search to a parent matching this CSS selector",{"type":42,"tag":49,"props":2490,"children":2491},{},[2492,2494,2499,2500,2505,2507,2512],{"type":47,"value":2493},"You can use ",{"type":42,"tag":75,"props":2495,"children":2497},{"className":2496},[],[2498],{"type":47,"value":47},{"type":47,"value":2056},{"type":42,"tag":75,"props":2501,"children":2503},{"className":2502},[],[2504],{"type":47,"value":2062},{"type":47,"value":2506}," (not both). ",{"type":42,"tag":75,"props":2508,"children":2510},{"className":2509},[],[2511],{"type":47,"value":2069},{"type":47,"value":2513}," is optional and scopes the search.",{"type":42,"tag":67,"props":2515,"children":2517},{"className":1682,"code":2516,"language":1684,"meta":72,"style":72},"{ \"action\": \"click\", \"text\": \"Submit\" }\n{ \"action\": \"click\", \"selector\": \"#submit-btn\" }\n{ \"action\": \"click\", \"text\": \"Submit\", \"within\": \".modal\" }\n",[2518],{"type":42,"tag":75,"props":2519,"children":2520},{"__ignoreMap":72},[2521,2594,2666],{"type":42,"tag":79,"props":2522,"children":2523},{"class":81,"line":82},[2524,2529,2533,2537,2541,2545,2549,2553,2557,2561,2565,2569,2573,2577,2581,2586,2590],{"type":42,"tag":79,"props":2525,"children":2526},{"style":1694},[2527],{"type":47,"value":2528},"{",{"type":42,"tag":79,"props":2530,"children":2531},{"style":1694},[2532],{"type":47,"value":1755},{"type":42,"tag":79,"props":2534,"children":2535},{"style":1708},[2536],{"type":47,"value":1956},{"type":42,"tag":79,"props":2538,"children":2539},{"style":1694},[2540],{"type":47,"value":1715},{"type":42,"tag":79,"props":2542,"children":2543},{"style":1694},[2544],{"type":47,"value":271},{"type":42,"tag":79,"props":2546,"children":2547},{"style":1694},[2548],{"type":47,"value":1755},{"type":42,"tag":79,"props":2550,"children":2551},{"style":92},[2552],{"type":47,"value":2046},{"type":42,"tag":79,"props":2554,"children":2555},{"style":1694},[2556],{"type":47,"value":1715},{"type":42,"tag":79,"props":2558,"children":2559},{"style":1694},[2560],{"type":47,"value":1786},{"type":42,"tag":79,"props":2562,"children":2563},{"style":1694},[2564],{"type":47,"value":1755},{"type":42,"tag":79,"props":2566,"children":2567},{"style":1708},[2568],{"type":47,"value":47},{"type":42,"tag":79,"props":2570,"children":2571},{"style":1694},[2572],{"type":47,"value":1715},{"type":42,"tag":79,"props":2574,"children":2575},{"style":1694},[2576],{"type":47,"value":271},{"type":42,"tag":79,"props":2578,"children":2579},{"style":1694},[2580],{"type":47,"value":1755},{"type":42,"tag":79,"props":2582,"children":2583},{"style":92},[2584],{"type":47,"value":2585},"Submit",{"type":42,"tag":79,"props":2587,"children":2588},{"style":1694},[2589],{"type":47,"value":1715},{"type":42,"tag":79,"props":2591,"children":2592},{"style":1694},[2593],{"type":47,"value":1911},{"type":42,"tag":79,"props":2595,"children":2596},{"class":81,"line":157},[2597,2601,2605,2609,2613,2617,2621,2625,2629,2633,2637,2641,2645,2649,2653,2658,2662],{"type":42,"tag":79,"props":2598,"children":2599},{"style":1694},[2600],{"type":47,"value":2528},{"type":42,"tag":79,"props":2602,"children":2603},{"style":1694},[2604],{"type":47,"value":1755},{"type":42,"tag":79,"props":2606,"children":2607},{"style":1708},[2608],{"type":47,"value":1956},{"type":42,"tag":79,"props":2610,"children":2611},{"style":1694},[2612],{"type":47,"value":1715},{"type":42,"tag":79,"props":2614,"children":2615},{"style":1694},[2616],{"type":47,"value":271},{"type":42,"tag":79,"props":2618,"children":2619},{"style":1694},[2620],{"type":47,"value":1755},{"type":42,"tag":79,"props":2622,"children":2623},{"style":92},[2624],{"type":47,"value":2046},{"type":42,"tag":79,"props":2626,"children":2627},{"style":1694},[2628],{"type":47,"value":1715},{"type":42,"tag":79,"props":2630,"children":2631},{"style":1694},[2632],{"type":47,"value":1786},{"type":42,"tag":79,"props":2634,"children":2635},{"style":1694},[2636],{"type":47,"value":1755},{"type":42,"tag":79,"props":2638,"children":2639},{"style":1708},[2640],{"type":47,"value":2062},{"type":42,"tag":79,"props":2642,"children":2643},{"style":1694},[2644],{"type":47,"value":1715},{"type":42,"tag":79,"props":2646,"children":2647},{"style":1694},[2648],{"type":47,"value":271},{"type":42,"tag":79,"props":2650,"children":2651},{"style":1694},[2652],{"type":47,"value":1755},{"type":42,"tag":79,"props":2654,"children":2655},{"style":92},[2656],{"type":47,"value":2657},"#submit-btn",{"type":42,"tag":79,"props":2659,"children":2660},{"style":1694},[2661],{"type":47,"value":1715},{"type":42,"tag":79,"props":2663,"children":2664},{"style":1694},[2665],{"type":47,"value":1911},{"type":42,"tag":79,"props":2667,"children":2668},{"class":81,"line":341},[2669,2673,2677,2681,2685,2689,2693,2697,2701,2705,2709,2713,2717,2721,2725,2729,2733,2737,2741,2745,2749,2753,2757,2762,2766],{"type":42,"tag":79,"props":2670,"children":2671},{"style":1694},[2672],{"type":47,"value":2528},{"type":42,"tag":79,"props":2674,"children":2675},{"style":1694},[2676],{"type":47,"value":1755},{"type":42,"tag":79,"props":2678,"children":2679},{"style":1708},[2680],{"type":47,"value":1956},{"type":42,"tag":79,"props":2682,"children":2683},{"style":1694},[2684],{"type":47,"value":1715},{"type":42,"tag":79,"props":2686,"children":2687},{"style":1694},[2688],{"type":47,"value":271},{"type":42,"tag":79,"props":2690,"children":2691},{"style":1694},[2692],{"type":47,"value":1755},{"type":42,"tag":79,"props":2694,"children":2695},{"style":92},[2696],{"type":47,"value":2046},{"type":42,"tag":79,"props":2698,"children":2699},{"style":1694},[2700],{"type":47,"value":1715},{"type":42,"tag":79,"props":2702,"children":2703},{"style":1694},[2704],{"type":47,"value":1786},{"type":42,"tag":79,"props":2706,"children":2707},{"style":1694},[2708],{"type":47,"value":1755},{"type":42,"tag":79,"props":2710,"children":2711},{"style":1708},[2712],{"type":47,"value":47},{"type":42,"tag":79,"props":2714,"children":2715},{"style":1694},[2716],{"type":47,"value":1715},{"type":42,"tag":79,"props":2718,"children":2719},{"style":1694},[2720],{"type":47,"value":271},{"type":42,"tag":79,"props":2722,"children":2723},{"style":1694},[2724],{"type":47,"value":1755},{"type":42,"tag":79,"props":2726,"children":2727},{"style":92},[2728],{"type":47,"value":2585},{"type":42,"tag":79,"props":2730,"children":2731},{"style":1694},[2732],{"type":47,"value":1715},{"type":42,"tag":79,"props":2734,"children":2735},{"style":1694},[2736],{"type":47,"value":1786},{"type":42,"tag":79,"props":2738,"children":2739},{"style":1694},[2740],{"type":47,"value":1755},{"type":42,"tag":79,"props":2742,"children":2743},{"style":1708},[2744],{"type":47,"value":2069},{"type":42,"tag":79,"props":2746,"children":2747},{"style":1694},[2748],{"type":47,"value":1715},{"type":42,"tag":79,"props":2750,"children":2751},{"style":1694},[2752],{"type":47,"value":271},{"type":42,"tag":79,"props":2754,"children":2755},{"style":1694},[2756],{"type":47,"value":1755},{"type":42,"tag":79,"props":2758,"children":2759},{"style":92},[2760],{"type":47,"value":2761},".modal",{"type":42,"tag":79,"props":2763,"children":2764},{"style":1694},[2765],{"type":47,"value":1715},{"type":42,"tag":79,"props":2767,"children":2768},{"style":1694},[2769],{"type":47,"value":1911},{"type":42,"tag":55,"props":2771,"children":2773},{"id":2772},"viewport-presets",[2774],{"type":47,"value":2775},"Viewport presets",{"type":42,"tag":49,"props":2777,"children":2778},{},[2779,2781,2786,2788,2793],{"type":47,"value":2780},"Use preset names as string values for ",{"type":42,"tag":75,"props":2782,"children":2784},{"className":2783},[],[2785],{"type":47,"value":1152},{"type":47,"value":2787},", or specify ",{"type":42,"tag":75,"props":2789,"children":2791},{"className":2790},[],[2792],{"type":47,"value":1172},{"type":47,"value":271},{"type":42,"tag":49,"props":2795,"children":2796},{},[2797,2803,2805,2811,2813,2819,2821,2827,2829,2835,2837,2843,2845,2851,2853,2859,2861,2867,2869,2875,2877,2883,2885,2891,2893,2899],{"type":42,"tag":75,"props":2798,"children":2800},{"className":2799},[],[2801],{"type":47,"value":2802},"desktop",{"type":47,"value":2804}," (1920x1080), ",{"type":42,"tag":75,"props":2806,"children":2808},{"className":2807},[],[2809],{"type":47,"value":2810},"desktop-hd",{"type":47,"value":2812}," (2560x1440), ",{"type":42,"tag":75,"props":2814,"children":2816},{"className":2815},[],[2817],{"type":47,"value":2818},"laptop",{"type":47,"value":2820}," (1366x768), ",{"type":42,"tag":75,"props":2822,"children":2824},{"className":2823},[],[2825],{"type":47,"value":2826},"macbook-air",{"type":47,"value":2828}," (1440x900), ",{"type":42,"tag":75,"props":2830,"children":2832},{"className":2831},[],[2833],{"type":47,"value":2834},"macbook-pro",{"type":47,"value":2836}," (1512x982), ",{"type":42,"tag":75,"props":2838,"children":2840},{"className":2839},[],[2841],{"type":47,"value":2842},"ipad",{"type":47,"value":2844}," (1024x1366), ",{"type":42,"tag":75,"props":2846,"children":2848},{"className":2847},[],[2849],{"type":47,"value":2850},"ipad-pro",{"type":47,"value":2852}," (834x1194), ",{"type":42,"tag":75,"props":2854,"children":2856},{"className":2855},[],[2857],{"type":47,"value":2858},"ipad-mini",{"type":47,"value":2860}," (768x1024), ",{"type":42,"tag":75,"props":2862,"children":2864},{"className":2863},[],[2865],{"type":47,"value":2866},"iphone-15",{"type":47,"value":2868}," (393x852), ",{"type":42,"tag":75,"props":2870,"children":2872},{"className":2871},[],[2873],{"type":47,"value":2874},"iphone-15-pro-max",{"type":47,"value":2876}," (430x932), ",{"type":42,"tag":75,"props":2878,"children":2880},{"className":2879},[],[2881],{"type":47,"value":2882},"iphone-se",{"type":47,"value":2884}," (375x667), ",{"type":42,"tag":75,"props":2886,"children":2888},{"className":2887},[],[2889],{"type":47,"value":2890},"pixel-8",{"type":47,"value":2892}," (412x915), ",{"type":42,"tag":75,"props":2894,"children":2896},{"className":2895},[],[2897],{"type":47,"value":2898},"galaxy-s24",{"type":47,"value":2900}," (360x780).",{"type":42,"tag":55,"props":2902,"children":2903},{"id":1184},[2904],{"type":47,"value":2905},"Theme",{"type":42,"tag":49,"props":2907,"children":2908},{},[2909],{"type":47,"value":2910},"Customize cursor appearance and keystroke HUD:",{"type":42,"tag":67,"props":2912,"children":2914},{"className":1682,"code":2913,"language":1684,"meta":72,"style":72},"{\n  \"theme\": {\n    \"cursor\": {\n      \"image\": \".\u002Fcursor.svg\",\n      \"size\": 32,\n      \"hotspot\": \"center\"\n    },\n    \"hud\": {\n      \"background\": \"rgba(30, 41, 59, 0.85)\",\n      \"color\": \"#e2e8f0\",\n      \"fontSize\": 48,\n      \"fontFamily\": \"\\\"SF Mono\\\", monospace\",\n      \"borderRadius\": 12,\n      \"position\": \"top\"\n    }\n  }\n}\n",[2915],{"type":42,"tag":75,"props":2916,"children":2917},{"__ignoreMap":72},[2918,2925,2948,2972,3011,3040,3074,3082,3106,3143,3180,3210,3262,3292,3326,3335,3343],{"type":42,"tag":79,"props":2919,"children":2920},{"class":81,"line":82},[2921],{"type":42,"tag":79,"props":2922,"children":2923},{"style":1694},[2924],{"type":47,"value":1697},{"type":42,"tag":79,"props":2926,"children":2927},{"class":81,"line":157},[2928,2932,2936,2940,2944],{"type":42,"tag":79,"props":2929,"children":2930},{"style":1694},[2931],{"type":47,"value":1705},{"type":42,"tag":79,"props":2933,"children":2934},{"style":1708},[2935],{"type":47,"value":1184},{"type":42,"tag":79,"props":2937,"children":2938},{"style":1694},[2939],{"type":47,"value":1715},{"type":42,"tag":79,"props":2941,"children":2942},{"style":1694},[2943],{"type":47,"value":271},{"type":42,"tag":79,"props":2945,"children":2946},{"style":1694},[2947],{"type":47,"value":1724},{"type":42,"tag":79,"props":2949,"children":2950},{"class":81,"line":341},[2951,2955,2960,2964,2968],{"type":42,"tag":79,"props":2952,"children":2953},{"style":1694},[2954],{"type":47,"value":1732},{"type":42,"tag":79,"props":2956,"children":2957},{"style":86},[2958],{"type":47,"value":2959},"cursor",{"type":42,"tag":79,"props":2961,"children":2962},{"style":1694},[2963],{"type":47,"value":1715},{"type":42,"tag":79,"props":2965,"children":2966},{"style":1694},[2967],{"type":47,"value":271},{"type":42,"tag":79,"props":2969,"children":2970},{"style":1694},[2971],{"type":47,"value":1724},{"type":42,"tag":79,"props":2973,"children":2974},{"class":81,"line":351},[2975,2980,2985,2989,2993,2997,3002,3006],{"type":42,"tag":79,"props":2976,"children":2977},{"style":1694},[2978],{"type":47,"value":2979},"      \"",{"type":42,"tag":79,"props":2981,"children":2982},{"style":1758},[2983],{"type":47,"value":2984},"image",{"type":42,"tag":79,"props":2986,"children":2987},{"style":1694},[2988],{"type":47,"value":1715},{"type":42,"tag":79,"props":2990,"children":2991},{"style":1694},[2992],{"type":47,"value":271},{"type":42,"tag":79,"props":2994,"children":2995},{"style":1694},[2996],{"type":47,"value":1755},{"type":42,"tag":79,"props":2998,"children":2999},{"style":92},[3000],{"type":47,"value":3001},".\u002Fcursor.svg",{"type":42,"tag":79,"props":3003,"children":3004},{"style":1694},[3005],{"type":47,"value":1715},{"type":42,"tag":79,"props":3007,"children":3008},{"style":1694},[3009],{"type":47,"value":3010},",\n",{"type":42,"tag":79,"props":3012,"children":3013},{"class":81,"line":360},[3014,3018,3023,3027,3031,3036],{"type":42,"tag":79,"props":3015,"children":3016},{"style":1694},[3017],{"type":47,"value":2979},{"type":42,"tag":79,"props":3019,"children":3020},{"style":1758},[3021],{"type":47,"value":3022},"size",{"type":42,"tag":79,"props":3024,"children":3025},{"style":1694},[3026],{"type":47,"value":1715},{"type":42,"tag":79,"props":3028,"children":3029},{"style":1694},[3030],{"type":47,"value":271},{"type":42,"tag":79,"props":3032,"children":3033},{"style":1758},[3034],{"type":47,"value":3035}," 32",{"type":42,"tag":79,"props":3037,"children":3038},{"style":1694},[3039],{"type":47,"value":3010},{"type":42,"tag":79,"props":3041,"children":3042},{"class":81,"line":368},[3043,3047,3052,3056,3060,3064,3069],{"type":42,"tag":79,"props":3044,"children":3045},{"style":1694},[3046],{"type":47,"value":2979},{"type":42,"tag":79,"props":3048,"children":3049},{"style":1758},[3050],{"type":47,"value":3051},"hotspot",{"type":42,"tag":79,"props":3053,"children":3054},{"style":1694},[3055],{"type":47,"value":1715},{"type":42,"tag":79,"props":3057,"children":3058},{"style":1694},[3059],{"type":47,"value":271},{"type":42,"tag":79,"props":3061,"children":3062},{"style":1694},[3063],{"type":47,"value":1755},{"type":42,"tag":79,"props":3065,"children":3066},{"style":92},[3067],{"type":47,"value":3068},"center",{"type":42,"tag":79,"props":3070,"children":3071},{"style":1694},[3072],{"type":47,"value":3073},"\"\n",{"type":42,"tag":79,"props":3075,"children":3076},{"class":81,"line":377},[3077],{"type":42,"tag":79,"props":3078,"children":3079},{"style":1694},[3080],{"type":47,"value":3081},"    },\n",{"type":42,"tag":79,"props":3083,"children":3084},{"class":81,"line":399},[3085,3089,3094,3098,3102],{"type":42,"tag":79,"props":3086,"children":3087},{"style":1694},[3088],{"type":47,"value":1732},{"type":42,"tag":79,"props":3090,"children":3091},{"style":86},[3092],{"type":47,"value":3093},"hud",{"type":42,"tag":79,"props":3095,"children":3096},{"style":1694},[3097],{"type":47,"value":1715},{"type":42,"tag":79,"props":3099,"children":3100},{"style":1694},[3101],{"type":47,"value":271},{"type":42,"tag":79,"props":3103,"children":3104},{"style":1694},[3105],{"type":47,"value":1724},{"type":42,"tag":79,"props":3107,"children":3108},{"class":81,"line":407},[3109,3113,3118,3122,3126,3130,3135,3139],{"type":42,"tag":79,"props":3110,"children":3111},{"style":1694},[3112],{"type":47,"value":2979},{"type":42,"tag":79,"props":3114,"children":3115},{"style":1758},[3116],{"type":47,"value":3117},"background",{"type":42,"tag":79,"props":3119,"children":3120},{"style":1694},[3121],{"type":47,"value":1715},{"type":42,"tag":79,"props":3123,"children":3124},{"style":1694},[3125],{"type":47,"value":271},{"type":42,"tag":79,"props":3127,"children":3128},{"style":1694},[3129],{"type":47,"value":1755},{"type":42,"tag":79,"props":3131,"children":3132},{"style":92},[3133],{"type":47,"value":3134},"rgba(30, 41, 59, 0.85)",{"type":42,"tag":79,"props":3136,"children":3137},{"style":1694},[3138],{"type":47,"value":1715},{"type":42,"tag":79,"props":3140,"children":3141},{"style":1694},[3142],{"type":47,"value":3010},{"type":42,"tag":79,"props":3144,"children":3145},{"class":81,"line":416},[3146,3150,3155,3159,3163,3167,3172,3176],{"type":42,"tag":79,"props":3147,"children":3148},{"style":1694},[3149],{"type":47,"value":2979},{"type":42,"tag":79,"props":3151,"children":3152},{"style":1758},[3153],{"type":47,"value":3154},"color",{"type":42,"tag":79,"props":3156,"children":3157},{"style":1694},[3158],{"type":47,"value":1715},{"type":42,"tag":79,"props":3160,"children":3161},{"style":1694},[3162],{"type":47,"value":271},{"type":42,"tag":79,"props":3164,"children":3165},{"style":1694},[3166],{"type":47,"value":1755},{"type":42,"tag":79,"props":3168,"children":3169},{"style":92},[3170],{"type":47,"value":3171},"#e2e8f0",{"type":42,"tag":79,"props":3173,"children":3174},{"style":1694},[3175],{"type":47,"value":1715},{"type":42,"tag":79,"props":3177,"children":3178},{"style":1694},[3179],{"type":47,"value":3010},{"type":42,"tag":79,"props":3181,"children":3183},{"class":81,"line":3182},11,[3184,3188,3193,3197,3201,3206],{"type":42,"tag":79,"props":3185,"children":3186},{"style":1694},[3187],{"type":47,"value":2979},{"type":42,"tag":79,"props":3189,"children":3190},{"style":1758},[3191],{"type":47,"value":3192},"fontSize",{"type":42,"tag":79,"props":3194,"children":3195},{"style":1694},[3196],{"type":47,"value":1715},{"type":42,"tag":79,"props":3198,"children":3199},{"style":1694},[3200],{"type":47,"value":271},{"type":42,"tag":79,"props":3202,"children":3203},{"style":1758},[3204],{"type":47,"value":3205}," 48",{"type":42,"tag":79,"props":3207,"children":3208},{"style":1694},[3209],{"type":47,"value":3010},{"type":42,"tag":79,"props":3211,"children":3213},{"class":81,"line":3212},12,[3214,3218,3223,3227,3231,3235,3240,3245,3249,3254,3258],{"type":42,"tag":79,"props":3215,"children":3216},{"style":1694},[3217],{"type":47,"value":2979},{"type":42,"tag":79,"props":3219,"children":3220},{"style":1758},[3221],{"type":47,"value":3222},"fontFamily",{"type":42,"tag":79,"props":3224,"children":3225},{"style":1694},[3226],{"type":47,"value":1715},{"type":42,"tag":79,"props":3228,"children":3229},{"style":1694},[3230],{"type":47,"value":271},{"type":42,"tag":79,"props":3232,"children":3233},{"style":1694},[3234],{"type":47,"value":1755},{"type":42,"tag":79,"props":3236,"children":3237},{"style":1810},[3238],{"type":47,"value":3239},"\\\"",{"type":42,"tag":79,"props":3241,"children":3242},{"style":92},[3243],{"type":47,"value":3244},"SF Mono",{"type":42,"tag":79,"props":3246,"children":3247},{"style":1810},[3248],{"type":47,"value":3239},{"type":42,"tag":79,"props":3250,"children":3251},{"style":92},[3252],{"type":47,"value":3253},", monospace",{"type":42,"tag":79,"props":3255,"children":3256},{"style":1694},[3257],{"type":47,"value":1715},{"type":42,"tag":79,"props":3259,"children":3260},{"style":1694},[3261],{"type":47,"value":3010},{"type":42,"tag":79,"props":3263,"children":3265},{"class":81,"line":3264},13,[3266,3270,3275,3279,3283,3288],{"type":42,"tag":79,"props":3267,"children":3268},{"style":1694},[3269],{"type":47,"value":2979},{"type":42,"tag":79,"props":3271,"children":3272},{"style":1758},[3273],{"type":47,"value":3274},"borderRadius",{"type":42,"tag":79,"props":3276,"children":3277},{"style":1694},[3278],{"type":47,"value":1715},{"type":42,"tag":79,"props":3280,"children":3281},{"style":1694},[3282],{"type":47,"value":271},{"type":42,"tag":79,"props":3284,"children":3285},{"style":1758},[3286],{"type":47,"value":3287}," 12",{"type":42,"tag":79,"props":3289,"children":3290},{"style":1694},[3291],{"type":47,"value":3010},{"type":42,"tag":79,"props":3293,"children":3295},{"class":81,"line":3294},14,[3296,3300,3305,3309,3313,3317,3322],{"type":42,"tag":79,"props":3297,"children":3298},{"style":1694},[3299],{"type":47,"value":2979},{"type":42,"tag":79,"props":3301,"children":3302},{"style":1758},[3303],{"type":47,"value":3304},"position",{"type":42,"tag":79,"props":3306,"children":3307},{"style":1694},[3308],{"type":47,"value":1715},{"type":42,"tag":79,"props":3310,"children":3311},{"style":1694},[3312],{"type":47,"value":271},{"type":42,"tag":79,"props":3314,"children":3315},{"style":1694},[3316],{"type":47,"value":1755},{"type":42,"tag":79,"props":3318,"children":3319},{"style":92},[3320],{"type":47,"value":3321},"top",{"type":42,"tag":79,"props":3323,"children":3324},{"style":1694},[3325],{"type":47,"value":3073},{"type":42,"tag":79,"props":3327,"children":3329},{"class":81,"line":3328},15,[3330],{"type":42,"tag":79,"props":3331,"children":3332},{"style":1694},[3333],{"type":47,"value":3334},"    }\n",{"type":42,"tag":79,"props":3336,"children":3338},{"class":81,"line":3337},16,[3339],{"type":42,"tag":79,"props":3340,"children":3341},{"style":1694},[3342],{"type":47,"value":1919},{"type":42,"tag":79,"props":3344,"children":3346},{"class":81,"line":3345},17,[3347],{"type":42,"tag":79,"props":3348,"children":3349},{"style":1694},[3350],{"type":47,"value":1927},{"type":42,"tag":188,"props":3352,"children":3353},{},[3354,3365,3376,3401],{"type":42,"tag":192,"props":3355,"children":3356},{},[3357,3363],{"type":42,"tag":75,"props":3358,"children":3360},{"className":3359},[],[3361],{"type":47,"value":3362},"cursor.image",{"type":47,"value":3364}," - path to a custom cursor SVG or PNG",{"type":42,"tag":192,"props":3366,"children":3367},{},[3368,3374],{"type":42,"tag":75,"props":3369,"children":3371},{"className":3370},[],[3372],{"type":47,"value":3373},"cursor.size",{"type":47,"value":3375}," - cursor size in pixels",{"type":42,"tag":192,"props":3377,"children":3378},{},[3379,3385,3387,3393,3395],{"type":42,"tag":75,"props":3380,"children":3382},{"className":3381},[],[3383],{"type":47,"value":3384},"cursor.hotspot",{"type":47,"value":3386}," - ",{"type":42,"tag":75,"props":3388,"children":3390},{"className":3389},[],[3391],{"type":47,"value":3392},"\"top-left\"",{"type":47,"value":3394}," (default) or ",{"type":42,"tag":75,"props":3396,"children":3398},{"className":3397},[],[3399],{"type":47,"value":3400},"\"center\"",{"type":42,"tag":192,"props":3402,"children":3403},{},[3404,3410,3411,3417,3418],{"type":42,"tag":75,"props":3405,"children":3407},{"className":3406},[],[3408],{"type":47,"value":3409},"hud.position",{"type":47,"value":3386},{"type":42,"tag":75,"props":3412,"children":3414},{"className":3413},[],[3415],{"type":47,"value":3416},"\"top\"",{"type":47,"value":2056},{"type":42,"tag":75,"props":3419,"children":3421},{"className":3420},[],[3422],{"type":47,"value":3423},"\"bottom\"",{"type":42,"tag":55,"props":3425,"children":3427},{"id":3426},"common-patterns",[3428],{"type":47,"value":3429},"Common patterns",{"type":42,"tag":476,"props":3431,"children":3433},{"id":3432},"shared-steps-via-include",[3434],{"type":47,"value":3435},"Shared steps via include",{"type":42,"tag":49,"props":3437,"children":3438},{},[3439],{"type":47,"value":3440},"Factor out reusable step sequences (e.g. dismissing a cookie banner) into JSON files:",{"type":42,"tag":67,"props":3442,"children":3444},{"className":1682,"code":3443,"language":1684,"meta":72,"style":72},"\u002F\u002F steps\u002Fdismiss-banner.json\n{\n  \"steps\": [\n    { \"action\": \"wait\", \"selector\": \".cookie-banner\", \"timeout\": 5000 },\n    { \"action\": \"click\", \"selector\": \".accept-btn\", \"delay\": 300 }\n  ]\n}\n",[3445],{"type":42,"tag":75,"props":3446,"children":3447},{"__ignoreMap":72},[3448,3456,3463,3487,3585,3682,3690],{"type":42,"tag":79,"props":3449,"children":3450},{"class":81,"line":82},[3451],{"type":42,"tag":79,"props":3452,"children":3453},{"style":178},[3454],{"type":47,"value":3455},"\u002F\u002F steps\u002Fdismiss-banner.json\n",{"type":42,"tag":79,"props":3457,"children":3458},{"class":81,"line":157},[3459],{"type":42,"tag":79,"props":3460,"children":3461},{"style":1694},[3462],{"type":47,"value":1697},{"type":42,"tag":79,"props":3464,"children":3465},{"class":81,"line":341},[3466,3470,3474,3478,3482],{"type":42,"tag":79,"props":3467,"children":3468},{"style":1694},[3469],{"type":47,"value":1705},{"type":42,"tag":79,"props":3471,"children":3472},{"style":1708},[3473],{"type":47,"value":1659},{"type":42,"tag":79,"props":3475,"children":3476},{"style":1694},[3477],{"type":47,"value":1715},{"type":42,"tag":79,"props":3479,"children":3480},{"style":1694},[3481],{"type":47,"value":271},{"type":42,"tag":79,"props":3483,"children":3484},{"style":1694},[3485],{"type":47,"value":3486}," [\n",{"type":42,"tag":79,"props":3488,"children":3489},{"class":81,"line":351},[3490,3495,3499,3503,3507,3511,3515,3519,3523,3527,3531,3535,3539,3543,3547,3552,3556,3560,3564,3568,3572,3576,3581],{"type":42,"tag":79,"props":3491,"children":3492},{"style":1694},[3493],{"type":47,"value":3494},"    {",{"type":42,"tag":79,"props":3496,"children":3497},{"style":1694},[3498],{"type":47,"value":1755},{"type":42,"tag":79,"props":3500,"children":3501},{"style":86},[3502],{"type":47,"value":1956},{"type":42,"tag":79,"props":3504,"children":3505},{"style":1694},[3506],{"type":47,"value":1715},{"type":42,"tag":79,"props":3508,"children":3509},{"style":1694},[3510],{"type":47,"value":271},{"type":42,"tag":79,"props":3512,"children":3513},{"style":1694},[3514],{"type":47,"value":1755},{"type":42,"tag":79,"props":3516,"children":3517},{"style":92},[3518],{"type":47,"value":2250},{"type":42,"tag":79,"props":3520,"children":3521},{"style":1694},[3522],{"type":47,"value":1715},{"type":42,"tag":79,"props":3524,"children":3525},{"style":1694},[3526],{"type":47,"value":1786},{"type":42,"tag":79,"props":3528,"children":3529},{"style":1694},[3530],{"type":47,"value":1755},{"type":42,"tag":79,"props":3532,"children":3533},{"style":86},[3534],{"type":47,"value":2062},{"type":42,"tag":79,"props":3536,"children":3537},{"style":1694},[3538],{"type":47,"value":1715},{"type":42,"tag":79,"props":3540,"children":3541},{"style":1694},[3542],{"type":47,"value":271},{"type":42,"tag":79,"props":3544,"children":3545},{"style":1694},[3546],{"type":47,"value":1755},{"type":42,"tag":79,"props":3548,"children":3549},{"style":92},[3550],{"type":47,"value":3551},".cookie-banner",{"type":42,"tag":79,"props":3553,"children":3554},{"style":1694},[3555],{"type":47,"value":1715},{"type":42,"tag":79,"props":3557,"children":3558},{"style":1694},[3559],{"type":47,"value":1786},{"type":42,"tag":79,"props":3561,"children":3562},{"style":1694},[3563],{"type":47,"value":1755},{"type":42,"tag":79,"props":3565,"children":3566},{"style":86},[3567],{"type":47,"value":2271},{"type":42,"tag":79,"props":3569,"children":3570},{"style":1694},[3571],{"type":47,"value":1715},{"type":42,"tag":79,"props":3573,"children":3574},{"style":1694},[3575],{"type":47,"value":271},{"type":42,"tag":79,"props":3577,"children":3578},{"style":1758},[3579],{"type":47,"value":3580}," 5000",{"type":42,"tag":79,"props":3582,"children":3583},{"style":1694},[3584],{"type":47,"value":1822},{"type":42,"tag":79,"props":3586,"children":3587},{"class":81,"line":360},[3588,3592,3596,3600,3604,3608,3612,3616,3620,3624,3628,3632,3636,3640,3644,3649,3653,3657,3661,3665,3669,3673,3678],{"type":42,"tag":79,"props":3589,"children":3590},{"style":1694},[3591],{"type":47,"value":3494},{"type":42,"tag":79,"props":3593,"children":3594},{"style":1694},[3595],{"type":47,"value":1755},{"type":42,"tag":79,"props":3597,"children":3598},{"style":86},[3599],{"type":47,"value":1956},{"type":42,"tag":79,"props":3601,"children":3602},{"style":1694},[3603],{"type":47,"value":1715},{"type":42,"tag":79,"props":3605,"children":3606},{"style":1694},[3607],{"type":47,"value":271},{"type":42,"tag":79,"props":3609,"children":3610},{"style":1694},[3611],{"type":47,"value":1755},{"type":42,"tag":79,"props":3613,"children":3614},{"style":92},[3615],{"type":47,"value":2046},{"type":42,"tag":79,"props":3617,"children":3618},{"style":1694},[3619],{"type":47,"value":1715},{"type":42,"tag":79,"props":3621,"children":3622},{"style":1694},[3623],{"type":47,"value":1786},{"type":42,"tag":79,"props":3625,"children":3626},{"style":1694},[3627],{"type":47,"value":1755},{"type":42,"tag":79,"props":3629,"children":3630},{"style":86},[3631],{"type":47,"value":2062},{"type":42,"tag":79,"props":3633,"children":3634},{"style":1694},[3635],{"type":47,"value":1715},{"type":42,"tag":79,"props":3637,"children":3638},{"style":1694},[3639],{"type":47,"value":271},{"type":42,"tag":79,"props":3641,"children":3642},{"style":1694},[3643],{"type":47,"value":1755},{"type":42,"tag":79,"props":3645,"children":3646},{"style":92},[3647],{"type":47,"value":3648},".accept-btn",{"type":42,"tag":79,"props":3650,"children":3651},{"style":1694},[3652],{"type":47,"value":1715},{"type":42,"tag":79,"props":3654,"children":3655},{"style":1694},[3656],{"type":47,"value":1786},{"type":42,"tag":79,"props":3658,"children":3659},{"style":1694},[3660],{"type":47,"value":1755},{"type":42,"tag":79,"props":3662,"children":3663},{"style":86},[3664],{"type":47,"value":1971},{"type":42,"tag":79,"props":3666,"children":3667},{"style":1694},[3668],{"type":47,"value":1715},{"type":42,"tag":79,"props":3670,"children":3671},{"style":1694},[3672],{"type":47,"value":271},{"type":42,"tag":79,"props":3674,"children":3675},{"style":1758},[3676],{"type":47,"value":3677}," 300",{"type":42,"tag":79,"props":3679,"children":3680},{"style":1694},[3681],{"type":47,"value":1911},{"type":42,"tag":79,"props":3683,"children":3684},{"class":81,"line":368},[3685],{"type":42,"tag":79,"props":3686,"children":3687},{"style":1694},[3688],{"type":47,"value":3689},"  ]\n",{"type":42,"tag":79,"props":3691,"children":3692},{"class":81,"line":377},[3693],{"type":42,"tag":79,"props":3694,"children":3695},{"style":1694},[3696],{"type":47,"value":1927},{"type":42,"tag":49,"props":3698,"children":3699},{},[3700],{"type":47,"value":3701},"Reference them in the config:",{"type":42,"tag":67,"props":3703,"children":3705},{"className":1682,"code":3704,"language":1684,"meta":72,"style":72},"{\n  \"include\": [\".\u002Fsteps\u002Fdismiss-banner.json\"],\n  \"videos\": { ... }\n}\n",[3706],{"type":42,"tag":75,"props":3707,"children":3708},{"__ignoreMap":72},[3709,3716,3757,3789],{"type":42,"tag":79,"props":3710,"children":3711},{"class":81,"line":82},[3712],{"type":42,"tag":79,"props":3713,"children":3714},{"style":1694},[3715],{"type":47,"value":1697},{"type":42,"tag":79,"props":3717,"children":3718},{"class":81,"line":157},[3719,3723,3727,3731,3735,3739,3743,3748,3752],{"type":42,"tag":79,"props":3720,"children":3721},{"style":1694},[3722],{"type":47,"value":1705},{"type":42,"tag":79,"props":3724,"children":3725},{"style":1708},[3726],{"type":47,"value":1226},{"type":42,"tag":79,"props":3728,"children":3729},{"style":1694},[3730],{"type":47,"value":1715},{"type":42,"tag":79,"props":3732,"children":3733},{"style":1694},[3734],{"type":47,"value":271},{"type":42,"tag":79,"props":3736,"children":3737},{"style":1694},[3738],{"type":47,"value":1807},{"type":42,"tag":79,"props":3740,"children":3741},{"style":1694},[3742],{"type":47,"value":1715},{"type":42,"tag":79,"props":3744,"children":3745},{"style":92},[3746],{"type":47,"value":3747},".\u002Fsteps\u002Fdismiss-banner.json",{"type":42,"tag":79,"props":3749,"children":3750},{"style":1694},[3751],{"type":47,"value":1715},{"type":42,"tag":79,"props":3753,"children":3754},{"style":1694},[3755],{"type":47,"value":3756},"],\n",{"type":42,"tag":79,"props":3758,"children":3759},{"class":81,"line":341},[3760,3764,3768,3772,3776,3780,3785],{"type":42,"tag":79,"props":3761,"children":3762},{"style":1694},[3763],{"type":47,"value":1705},{"type":42,"tag":79,"props":3765,"children":3766},{"style":1708},[3767],{"type":47,"value":1294},{"type":42,"tag":79,"props":3769,"children":3770},{"style":1694},[3771],{"type":47,"value":1715},{"type":42,"tag":79,"props":3773,"children":3774},{"style":1694},[3775],{"type":47,"value":271},{"type":42,"tag":79,"props":3777,"children":3778},{"style":1694},[3779],{"type":47,"value":1750},{"type":42,"tag":79,"props":3781,"children":3782},{"style":1810},[3783],{"type":47,"value":3784}," ... ",{"type":42,"tag":79,"props":3786,"children":3787},{"style":1694},[3788],{"type":47,"value":1927},{"type":42,"tag":79,"props":3790,"children":3791},{"class":81,"line":351},[3792],{"type":42,"tag":79,"props":3793,"children":3794},{"style":1694},[3795],{"type":47,"value":1927},{"type":42,"tag":476,"props":3797,"children":3799},{"id":3798},"multiple-videos-in-one-config",[3800],{"type":47,"value":3801},"Multiple videos in one config",{"type":42,"tag":49,"props":3803,"children":3804},{},[3805,3807,3812,3814,3819,3820,3825,3826,3831],{"type":47,"value":3806},"Define several videos in the ",{"type":42,"tag":75,"props":3808,"children":3810},{"className":3809},[],[3811],{"type":47,"value":1294},{"type":47,"value":3813}," map. Shared settings (",{"type":42,"tag":75,"props":3815,"children":3817},{"className":3816},[],[3818],{"type":47,"value":1152},{"type":47,"value":994},{"type":42,"tag":75,"props":3821,"children":3823},{"className":3822},[],[3824],{"type":47,"value":1184},{"type":47,"value":994},{"type":42,"tag":75,"props":3827,"children":3829},{"className":3828},[],[3830],{"type":47,"value":1247},{"type":47,"value":3832},") are inherited from the top level.",{"type":42,"tag":476,"props":3834,"children":3836},{"id":3835},"environment-variables",[3837],{"type":47,"value":3838},"Environment variables",{"type":42,"tag":49,"props":3840,"children":3841},{},[3842,3844,3850,3852,3858],{"type":47,"value":3843},"Config values support ",{"type":42,"tag":75,"props":3845,"children":3847},{"className":3846},[],[3848],{"type":47,"value":3849},"$VAR",{"type":47,"value":3851}," and ",{"type":42,"tag":75,"props":3853,"children":3855},{"className":3854},[],[3856],{"type":47,"value":3857},"${VAR}",{"type":47,"value":3859}," substitution from the environment.",{"type":42,"tag":476,"props":3861,"children":3863},{"id":3862},"output-formats",[3864],{"type":47,"value":3865},"Output formats",{"type":42,"tag":49,"props":3867,"children":3868},{},[3869,3871,3876,3878,3883,3885,3890,3891,3896],{"type":47,"value":3870},"Set the ",{"type":42,"tag":75,"props":3872,"children":3874},{"className":3873},[],[3875],{"type":47,"value":1428},{"type":47,"value":3877}," extension to control format: ",{"type":42,"tag":75,"props":3879,"children":3881},{"className":3880},[],[3882],{"type":47,"value":1448},{"type":47,"value":3884}," (default), ",{"type":42,"tag":75,"props":3886,"children":3888},{"className":3887},[],[3889],{"type":47,"value":1455},{"type":47,"value":994},{"type":42,"tag":75,"props":3892,"children":3894},{"className":3893},[],[3895],{"type":47,"value":1462},{"type":47,"value":493},{"type":42,"tag":67,"props":3898,"children":3900},{"className":1682,"code":3899,"language":1684,"meta":72,"style":72},"{ \"output\": \"demo.gif\" }\n",[3901],{"type":42,"tag":75,"props":3902,"children":3903},{"__ignoreMap":72},[3904],{"type":42,"tag":79,"props":3905,"children":3906},{"class":81,"line":82},[3907,3911,3915,3919,3923,3927,3931,3936,3940],{"type":42,"tag":79,"props":3908,"children":3909},{"style":1694},[3910],{"type":47,"value":2528},{"type":42,"tag":79,"props":3912,"children":3913},{"style":1694},[3914],{"type":47,"value":1755},{"type":42,"tag":79,"props":3916,"children":3917},{"style":1708},[3918],{"type":47,"value":1428},{"type":42,"tag":79,"props":3920,"children":3921},{"style":1694},[3922],{"type":47,"value":1715},{"type":42,"tag":79,"props":3924,"children":3925},{"style":1694},[3926],{"type":47,"value":271},{"type":42,"tag":79,"props":3928,"children":3929},{"style":1694},[3930],{"type":47,"value":1755},{"type":42,"tag":79,"props":3932,"children":3933},{"style":92},[3934],{"type":47,"value":3935},"demo.gif",{"type":42,"tag":79,"props":3937,"children":3938},{"style":1694},[3939],{"type":47,"value":1715},{"type":42,"tag":79,"props":3941,"children":3942},{"style":1694},[3943],{"type":47,"value":1911},{"type":42,"tag":55,"props":3945,"children":3947},{"id":3946},"tips",[3948],{"type":47,"value":3949},"Tips",{"type":42,"tag":188,"props":3951,"children":3952},{},[3953,3965,3977,3989,4000,4011,4023,4034],{"type":42,"tag":192,"props":3954,"children":3955},{},[3956,3958,3963],{"type":47,"value":3957},"Always set ",{"type":42,"tag":75,"props":3959,"children":3961},{"className":3960},[],[3962],{"type":47,"value":235},{"type":47,"value":3964}," on a video to ensure the page is ready before steps run.",{"type":42,"tag":192,"props":3966,"children":3967},{},[3968,3970,3975],{"type":47,"value":3969},"Use ",{"type":42,"tag":75,"props":3971,"children":3973},{"className":3972},[],[3974],{"type":47,"value":1971},{"type":47,"value":3976}," on individual steps to control pacing between actions.",{"type":42,"tag":192,"props":3978,"children":3979},{},[3980,3981,3987],{"type":47,"value":3969},{"type":42,"tag":75,"props":3982,"children":3984},{"className":3983},[],[3985],{"type":47,"value":3986},"--watch",{"type":47,"value":3988}," during development for automatic re-recording on config changes.",{"type":42,"tag":192,"props":3990,"children":3991},{},[3992,3993,3998],{"type":47,"value":3969},{"type":42,"tag":75,"props":3994,"children":3996},{"className":3995},[],[3997],{"type":47,"value":820},{"type":47,"value":3999}," to iterate on theme\u002Foverlay settings without re-recording.",{"type":42,"tag":192,"props":4001,"children":4002},{},[4003,4004,4009],{"type":47,"value":3969},{"type":42,"tag":75,"props":4005,"children":4007},{"className":4006},[],[4008],{"type":47,"value":243},{"type":47,"value":4010}," to debug step execution.",{"type":42,"tag":192,"props":4012,"children":4013},{},[4014,4015,4021],{"type":47,"value":3969},{"type":42,"tag":75,"props":4016,"children":4018},{"className":4017},[],[4019],{"type":47,"value":4020},"--dry-run",{"type":47,"value":4022}," to inspect the fully resolved config (includes, env vars, defaults).",{"type":42,"tag":192,"props":4024,"children":4025},{},[4026,4027,4032],{"type":47,"value":3969},{"type":42,"tag":75,"props":4028,"children":4030},{"className":4029},[],[4031],{"type":47,"value":1387},{"type":47,"value":4033}," to scale up small UIs for readability in the recording.",{"type":42,"tag":192,"props":4035,"children":4036},{},[4037,4039,4044],{"type":47,"value":4038},"Start with ",{"type":42,"tag":75,"props":4040,"children":4042},{"className":4041},[],[4043],{"type":47,"value":771},{"type":47,"value":4045}," to verify steps work before committing to a full recording.",{"type":42,"tag":55,"props":4047,"children":4049},{"id":4048},"reference-files",[4050],{"type":47,"value":4051},"Reference files",{"type":42,"tag":188,"props":4053,"children":4054},{},[4055,4064],{"type":42,"tag":192,"props":4056,"children":4057},{},[4058,4062],{"type":42,"tag":2439,"props":4059,"children":4060},{"href":2441},[4061],{"type":47,"value":2441},{"type":47,"value":4063}," - detailed docs for all 12 step types",{"type":42,"tag":192,"props":4065,"children":4066},{},[4067,4072],{"type":42,"tag":2439,"props":4068,"children":4070},{"href":4069},"examples.md",[4071],{"type":47,"value":4069},{"type":47,"value":4073}," - annotated config examples for common use cases",{"type":42,"tag":4075,"props":4076,"children":4077},"style",{},[4078],{"type":47,"value":4079},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4081,"total":82},[4082],{"slug":4,"name":4,"fn":5,"description":6,"org":4083,"tags":4084,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4085,4086,4087,4088],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":17,"slug":18,"type":15},{"items":4090,"total":4259},[4091,4107,4119,4131,4146,4163,4174,4187,4200,4213,4225,4244],{"slug":4092,"name":4092,"fn":4093,"description":4094,"org":4095,"tags":4096,"stars":4104,"repoUrl":4105,"updatedAt":4106},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4097,4100,4103],{"name":4098,"slug":4099,"type":15},"Agents","agents",{"name":4101,"slug":4102,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":4108,"name":4108,"fn":4109,"description":4110,"org":4111,"tags":4112,"stars":4104,"repoUrl":4105,"updatedAt":4118},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4113,4114,4117],{"name":4101,"slug":4102,"type":15},{"name":4115,"slug":4116,"type":15},"AWS","aws",{"name":20,"slug":21,"type":15},"2026-07-17T06:08:33.665276",{"slug":4120,"name":4120,"fn":4121,"description":4122,"org":4123,"tags":4124,"stars":4104,"repoUrl":4105,"updatedAt":4130},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4125,4126,4127],{"name":4098,"slug":4099,"type":15},{"name":20,"slug":21,"type":15},{"name":4128,"slug":4129,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":4132,"name":4132,"fn":4133,"description":4134,"org":4135,"tags":4136,"stars":4104,"repoUrl":4105,"updatedAt":4145},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4137,4140,4141,4142],{"name":4138,"slug":4139,"type":15},"API Development","api-development",{"name":4101,"slug":4102,"type":15},{"name":20,"slug":21,"type":15},{"name":4143,"slug":4144,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":4147,"name":4147,"fn":4148,"description":4149,"org":4150,"tags":4151,"stars":4104,"repoUrl":4105,"updatedAt":4162},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4152,4153,4156,4159],{"name":20,"slug":21,"type":15},{"name":4154,"slug":4155,"type":15},"Debugging","debugging",{"name":4157,"slug":4158,"type":15},"QA","qa",{"name":4160,"slug":4161,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":4164,"name":4164,"fn":4165,"description":4166,"org":4167,"tags":4168,"stars":4104,"repoUrl":4105,"updatedAt":4173},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4169,4170,4171],{"name":4098,"slug":4099,"type":15},{"name":20,"slug":21,"type":15},{"name":4172,"slug":2802,"type":15},"Desktop","2026-07-17T06:08:28.007783",{"slug":4175,"name":4175,"fn":4176,"description":4177,"org":4178,"tags":4179,"stars":4104,"repoUrl":4105,"updatedAt":4186},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4180,4181,4184],{"name":20,"slug":21,"type":15},{"name":4182,"slug":4183,"type":15},"Messaging","messaging",{"name":4185,"slug":4175,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":4188,"name":4188,"fn":4189,"description":4190,"org":4191,"tags":4192,"stars":4104,"repoUrl":4105,"updatedAt":4199},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4193,4194,4195,4196],{"name":4101,"slug":4102,"type":15},{"name":20,"slug":21,"type":15},{"name":4160,"slug":4161,"type":15},{"name":4197,"slug":4198,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":4201,"name":4201,"fn":4202,"description":4203,"org":4204,"tags":4205,"stars":4210,"repoUrl":4211,"updatedAt":4212},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4206,4209],{"name":4207,"slug":4208,"type":15},"Deployment","deployment",{"name":4197,"slug":4198,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":4214,"name":4214,"fn":4215,"description":4216,"org":4217,"tags":4218,"stars":4210,"repoUrl":4211,"updatedAt":4224},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4219,4222,4223],{"name":4220,"slug":4221,"type":15},"CLI","cli",{"name":4207,"slug":4208,"type":15},{"name":4197,"slug":4198,"type":15},"2026-07-17T06:08:41.84179",{"slug":4226,"name":4226,"fn":4227,"description":4228,"org":4229,"tags":4230,"stars":4210,"repoUrl":4211,"updatedAt":4243},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4231,4234,4237,4240],{"name":4232,"slug":4233,"type":15},"Best Practices","best-practices",{"name":4235,"slug":4236,"type":15},"Frontend","frontend",{"name":4238,"slug":4239,"type":15},"React","react",{"name":4241,"slug":4242,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":4245,"name":4245,"fn":4246,"description":4247,"org":4248,"tags":4249,"stars":4210,"repoUrl":4211,"updatedAt":4258},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4250,4253,4254,4257],{"name":4251,"slug":4252,"type":15},"Cost Optimization","cost-optimization",{"name":4207,"slug":4208,"type":15},{"name":4255,"slug":4256,"type":15},"Performance","performance",{"name":4197,"slug":4198,"type":15},"2026-07-17T06:04:08.327515",100]