Summary
The Playwright CLI skill documentation shows an outdated video-stop usage pattern.
Current examples use positional filename arguments, e.g.:
playwright-cli video-stop video.webm
However, the CLI currently accepts either:
playwright-cli video-stop
playwright-cli video-stop --filename myfile.webm
Why this is a problem
Following the documented positional-argument form causes confusion and can fail depending on CLI argument parsing/version.
Suggested fix
Update all video-stop examples in skill docs to use supported syntax only:
- No-arg default output:
playwright-cli video-stop
- Explicit output:
playwright-cli video-stop --filename <name>.webm
Context
I validated this behavior while running TodoMVC automation via Playwright CLI and confirmed the accepted forms above.
Summary
The Playwright CLI skill documentation shows an outdated
video-stopusage pattern.Current examples use positional filename arguments, e.g.:
playwright-cli video-stop video.webmHowever, the CLI currently accepts either:
playwright-cli video-stopplaywright-cli video-stop --filename myfile.webmWhy this is a problem
Following the documented positional-argument form causes confusion and can fail depending on CLI argument parsing/version.
Suggested fix
Update all
video-stopexamples in skill docs to use supported syntax only:playwright-cli video-stopplaywright-cli video-stop --filename <name>.webmContext
I validated this behavior while running TodoMVC automation via Playwright CLI and confirmed the accepted forms above.