testcafe-skill

Installation
SKILL.md

TestCafe Automation Skill

Core Patterns

Basic Test

import { Selector } from 'testcafe';

fixture('Login').page('https://example.com/login');

test('Login with valid credentials', async t => {
    await t
        .typeText('#username', 'user@test.com')
        .typeText('#password', 'password123')
        .click('button[type="submit"]')
        .expect(Selector('.dashboard').exists).ok();
});
Installs
106
GitHub Stars
317
First Seen
Mar 5, 2026
testcafe-skill — lambdatest/agent-skills