webdriverio-skill
Generates WebdriverIO (WDIO) automation tests in JavaScript or TypeScript. Supports local and TestMu AI cloud. Use when user mentions "WebdriverIO", "WDIO", "wdio.conf", "browser.url", "$", "$$". Triggers on: "WebdriverIO", "WDIO", "wdio", "browser.$".
npx skills add sickn33/agentic-awesome-skills --skill webdriverio-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.
# WebdriverIO Automation Skill ## When to Use Use this skill when you need generates WebdriverIO (WDIO) automation tests in JavaScript or TypeScript. Supports local and TestMu AI cloud. Use when user mentions "WebdriverIO", "WDIO", "wdio.conf", "browser.url", "$", "$$". Triggers on: "WebdriverIO", "WDIO", "wdio", "browser.$". ## Step 1 — Execution Target Default local. If mentions "cloud", "TestMu", "LambdaTest" → cloud via WDIO LambdaTest service. ## Step 2 — Framework | Signal | Runner | |--------|--------| | Default | Mocha | | "Jasmine" | Jasmine | | "Cucumber", "BDD" | Cucumber | ## Core Patterns ### Selectors ```javascript // ✅ Preferred await $('[data-testid="submit"]').click(); await $('aria/Submit').click(); await $('button=Submit').click(); // text-based // Chaining await $('form').$('input[name="email"]').setValue('test@test.com'); // Multiple elements const items = await $$('.list-item'); ``` ### Basic Test (Mocha) ```javascript describe('Login', () => { it('should login successfully', async () => { await browser.url('/login'); await $('[data-testid="email"]').setValue('user@test.com'); await $('[data-testid="password"]').setValue('password123'); await $('[data-testid="
- When to Use
- Step 1 — Execution Target
- Step 2 — Framework
- Core Patterns
- Selectors
- Basic Test (Mocha)
- Page Object
- TestMu AI Cloud Config
- Wait Strategies
- Quick Reference
- Reference Files
- Deep Patterns → reference/playbook.md
- Limitations
What does the webdriverio-skill skill do?
Generates WebdriverIO (WDIO) automation tests in JavaScript or TypeScript. Supports local and TestMu AI cloud. Use when user mentions "WebdriverIO", "WDIO", "wdio.conf", "browser.url", "$", "$$". Triggers on: "WebdriverIO", "WDIO", "wdio", "browser.$".
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill webdriverio-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.