| name | managing-webdriverio |
| description | Use when working with Webdriverio — webdriverIO test automation management and
analysis. Covers test suite configuration, service integration, browser and
mobile testing, Allure report parsing, spec file organization, and WDIO runner
analysis. Use when managing WebdriverIO test suites, investigating failures,
or reviewing automation configurations.
|
| connection_type | webdriverio |
| preload | false |
WebdriverIO Test Automation Management Skill
Manage and analyze WebdriverIO test suites, results, and configurations.
Core Helper Functions
#!/bin/bash
wdio_run() {
local config="${1:-wdio.conf.js}"
npx wdio run "$config" 2>&1
}
wdio_allure_results() {
local results_dir="${ALLURE_RESULTS_DIR:-allure-results}"
find "$results_dir" -name "*.json" -exec cat {} \; 2>/dev/null | jq -s '.'
}
MANDATORY: Discovery-First Pattern
Always discover test configuration and specs before querying specifics.
Phase 1: Discovery
#!/bin/bash
echo "=== WebdriverIO Configuration ==="
CONFIG=$(ls wdio.conf.{ts,js} wdio.*.conf.{ts,js} 2>/dev/null | head -5)
echo "Config files found: $CONFIG"
for f in $CONFIG; do
echo "--- $f ---"
grep -E "(specs|capabilities|services|framework|reporters|baseUrl)" "$f" | head -10
done
echo ""
echo "=== WDIO Version ==="
npx wdio --version 2>/dev/null
echo ""
echo "=== Test Spec Files ==="
SPEC_DIR=$(grep -oP "specs:\s*\[.*?['\"]([^'\"]+)" wdio.conf.* 2>/dev/null | head -1 | grep -oP "['\"][^'\"]+$" | tr -d "'\"" || echo "test/specs")
find . -maxdepth 4 -path "*/specs/*.ts" -o -path "*/specs/*.js" 2>/dev/null | grep -v node_modules | head -15
echo ""
echo "=== Configured Services ==="
grep -oP "services:\s*\[.*?\]" wdio.conf.* 2>/dev/null | head -5
Phase 2: Analysis
#!/bin/bash
echo "=== Test Results Summary ==="
REPORT_DIR="${WDIO_REPORT_DIR:-allure-results}"
if [ -d "$REPORT_DIR" ]; then
TOTAL=$(find "$REPORT_DIR" -name "*-result.json" | wc -l)
PASSED=$(find "$REPORT_DIR" -name "*-result.json" -exec grep -l '"status":"passed"' {} \; | wc -l)
FAILED=$(find "$REPORT_DIR" -name "*-result.json" -exec grep -l '"status":"failed"' {} \; | wc -l)
echo "Total: $TOTAL | Passed: $PASSED | Failed: $FAILED"
echo ""
echo "=== Failed Tests ==="
find "$REPORT_DIR" -name "*-result.json" -exec grep -l '"status":"failed"' {} \; | while read f; do
jq -r '"\(.name)\t\(.status)\t\(.statusDetails.message // "unknown" | split("\n")[0])"' "$f"
done | column -t | head -15
fi
echo ""
echo
grep -A 10 wdio.conf.* 2>/dev/null | grep -E | -10
Output Rules
- TOKEN EFFICIENCY: Target 50 lines per output
- Parse Allure or JSON reporter output for structured results
- Never dump full spec files — summarize test descriptions
Anti-Hallucination Rules
- NEVER guess spec file names — always discover via filesystem
- NEVER fabricate test results — parse actual Allure/JSON reports
- NEVER assume service availability — check wdio.conf for configured services
Safety Rules
- NEVER execute tests without user confirmation
- NEVER modify config or spec files without explicit user approval
- NEVER delete test results or screenshots without user consent
Output Format
Present results as a structured report:
Managing Webdriverio Report
═══════════════════════════
Resources discovered: [count]
Resource Status Key Metric Issues
──────────────────────────────────────────────
[name] [ok/warn] [value] [findings]
Summary: [total] resources | [ok] healthy | [warn] warnings | [crit] critical
Action Items: [list of prioritized findings]
Target ≤50 lines of output. Use tables for multi-resource comparisons.
Counter-Rationalizations
| Shortcut | Counter | Why |
|---|
| "I'll skip discovery and check known resources" | Always run Phase 1 discovery first | Resource names change, new resources appear — assumed names cause errors |
| "The user only asked for a quick check" | Follow the full discovery → analysis flow | Quick checks miss critical issues; structured analysis catches silent failures |
| "Default configuration is probably fine" | Audit configuration explicitly | Defaults often leave logging, security, and optimization features disabled |
| "Metrics aren't needed for this" | Always check relevant metrics when available | API/CLI responses show current state; metrics reveal trends and intermittent issues |
| "I don't have access to that" | Try the command and report the actual error | Assumed permission failures prevent useful investigation; actual errors are informative |