smartui-skill
Generates SmartUI visual regression test configurations for screenshot comparison on TestMu AI cloud. Framework-agnostic — works with Playwright, Selenium, Cypress, Puppeteer. Use when user mentions "SmartUI", "visual regression", "screenshot comparison", "visual testing". Triggers on:...
npx skills add sickn33/agentic-awesome-skills --skill smartui-skill --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# SmartUI Visual Regression Skill ## When to Use Use this skill when you need generates SmartUI visual regression test configurations for screenshot comparison on TestMu AI cloud. Framework-agnostic — works with Playwright, Selenium, Cypress, Puppeteer. Use when user mentions "SmartUI", "visual regression", "screenshot comparison", "visual testing". Triggers on:... ## Core Patterns ### Playwright + SmartUI SDK ```javascript const { chromium } = require('playwright'); const { smartuiSnapshot } = require('@lambdatest/smartui-cli'); (async () => { const browser = await chromium.launch(); const page = await browser.newPage(); await page.goto('https://example.com'); await smartuiSnapshot(page, 'Homepage'); await page.goto('https://example.com/login'); await smartuiSnapshot(page, 'Login Page'); await browser.close(); })(); ``` ### Selenium + SmartUI ```java // Take SmartUI screenshot ((JavascriptExecutor) driver).executeScript( "smartui.takeScreenshot=Login Page" ); ``` ### CLI Execution ```bash # Install npm install @lambdatest/smartui-cli --save-dev # Configure npx smartui config:create smartui.config.json # Execute npx smartui exec -- node test.js # or with Playwright npx smartui exec
- When to Use
- Core Patterns
- Playwright + SmartUI SDK
- Selenium + SmartUI
- CLI Execution
- smartui.config.json
- SmartUI with Storybook
- Approval Workflow
- Anti-Patterns
- Cloud Authentication
- Quick Reference
- Deep Patterns
- Limitations
Install npm install @lambdatest/smartui-cli --save-dev Configure npx smartui config:create smartui.config.json Execute npx smartui exec -- node test.js or with Playwright npx smartui exec -- npx playwright test npx smartui storybook http://localhost:6006 --config smartui.config.json export PROJECT_TOKEN="your-smartui-project-token" # From SmartUI dashboard
What does the smartui-skill skill do?
Generates SmartUI visual regression test configurations for screenshot comparison on TestMu AI cloud. Framework-agnostic — works with Playwright, Selenium, Cypress, Puppeteer. Use when user mentions "SmartUI", "visual regression", "screenshot comparison", "visual testing". Triggers on:...
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill smartui-skill --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.