Sub-skill of webapp-testing: Slow Motion (+3).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill slow-motion --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Slow Motion?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-slow-motion)More formats (shields.io, HTML) on the badges page.
---
name: webapp-testing-slow-motion
description: 'Sub-skill of webapp-testing: Slow Motion (+3).'
version: 1.1.0
category: development
type: reference
scripts_exempt: true
---
# Slow Motion (+3)
## Slow Motion
```python
browser = p.chromium.launch(slow_mo=500) # 500ms delay between actions
```
## Headed Mode
```python
browser = p.chromium.launch(headless=False) # See the browser
```
## Pause Execution
```python
page.pause() # Opens Playwright Inspector
```
## Trace Recording
```python
context = browser.new_context()
context.tracing.start(screenshots=True, snapshots=True)
page = context.new_page()
# ... test code ...
context.tracing.stop(path="trace.zip")
# View with: playwright show-trace trace.zip
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!