Agent skill

webapp-testing-slow-motion

Sub-skill of webapp-testing: Slow Motion (+3).

Stars 4
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/development/webapp-testing/slow-motion

SKILL.md

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

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results