testdriver-agent
How the TestDriver agent behaves on GitHub issues, pull requests, and @mentions
Type text into focused input fields
$ npx -y skills add testdriverai/testdriverai --skill testdriver-type --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/testdriver-typeContext preview
The summary Claude sees to decide when to auto-load this skill.
Type text into focused input fields
name: testdriver:type description: Type text into focused input fields
<!-- Generated from type.mdx. DO NOT EDIT. -->
Type text or numbers into the input field that has focus. You can set an optional delay between the keystrokes.
await testdriver.type(text, options)
<ParamField path="text" type="string | number" required> Text to type (can be a string or number) </ParamField>
<ParamField path="options" type="object | number"> Typing options (or legacy delay number)
<Expandable title="properties"> <ParamField path="delay" type="number" default={250}> Delay between keystrokes in milliseconds </ParamField>
<ParamField path="secret" type="boolean" default={false}> If `true`, TestDriver makes the text sensitive data. It does not log or store it in the debug info or in dashcam. </ParamField> </Expandable> </ParamField>
`Promise<void>`
// Type text
await testdriver.type('hello@example.com');
// Type numbers
await testdriver.type(12345);
// Type with custom delay (legacy syntax)
await testdriver.type('slow typing', 500); // 500ms between each character
// Type with options object
await testdriver.type('text', { delay: 500 });// ✅ SECURE - Mark as secret to prevent logging
const passwordField = await testdriver.find('password input');
await passwordField.click();
await testdriver.type('MySecureP@ssw0rd', { secret: true });
// Password NOT logged in dashcam or debug output
// ❌ INSECURE - Password will be logged
await testdriver.type('MySecureP@ssw0rd');
// Password appears in logs, dashcam replay, and debug info
// Use secret for any sensitive data
await testdriver.find('api key input').click();
await testdriver.type('sk-1234567890abcdef', { secret: true });
await testdriver.find('credit card input').click();
await testdriver.type('4111111111111111', { secret: true });<Warning> **Always use `secret: true` for passwords and sensitive data.**
If you do not use this option, the typed text shows in these:
</Warning>
// Focus field and type
const emailField = await testdriver.find('email input');
await emailField.click();
await testdriver.type('user@example.com');
// Tab to next field and type
await testdriver.pressKeys(['tab']);
await testdriver.type('John Doe');
// Type password securely
await testdriver.pressKeys(['tab']);
await testdriver.type('MySecureP@ssw0rd', { secret: true });const searchBox = await testdriver.find('search input');
await searchBox.click();
// Clear existing text
await testdriver.pressKeys(['ctrl', 'a']); // Select all
await testdriver.type('new search query');<Check> **Focus the field first**
Always click the input field or navigate to it before typing:
const input = await testdriver.find('username input');
await input.click();
await testdriver.type('testuser');</Check>
<Check> **Use Tab for navigation**
Navigate between fields using Tab instead of clicking each one:
const firstField = await testdriver.find('first name');
await firstField.click();
await testdriver.type('John');
await testdriver.pressKeys(['tab']);
await testdriver.type('Doe');
await testdriver.pressKeys(['tab']);
await testdriver.type('john@example.com');</Check>
<Check> **Clear fields before typing**
Clear existing content to avoid appending:
const input = await testdriver.find('search field');
await input.click();
await testdriver.pressKeys(['ctrl', 'a']); // Select all
await testdriver.type('new search');</Check>
<Warning> **Field must be focused**
Typing will only work if an input field is currently focused. If no field is focused, the text may be lost or trigger unexpected keyboard shortcuts. </Warning>
<AccordionGroup> <Accordion title="Login Forms">
await testdriver.focusApplication('Google Chrome');
const usernameField = await testdriver.find('username input');
await usernameField.click();
await testdriver.type('testuser@example.com');
await testdriver.pressKeys(['tab']);
await testdriver.type('MyP@ssword123', { secret: true });
await testdriver.pressKeys(['enter']);</Accordion>
<Accordion title="Search Fields">
const searchBox = await testdriver.find('search input');
await searchBox.click();
await testdriver.type('laptop computers');
await testdriver.pressKeys(['enter']);
// Wait for results
await new Promise(r => setTimeout(r, 2000));</Accordion>
<Accordion title="Multi-Field Forms">
// First field
const nameField = await testdriver.find('full name input');
await nameField.click();
await testdriver.type('Jane Smith');
// Navigate with Tab
await testdriver.pressKeys(['tab']);
await testdriver.type('jane.smith@example.com');
await testdriver.pressKeys(['tab']);
await testdriver.type('+1-555-0123');
await testdriver.pressKeys(['tab']);
await testdriver.type('123 Main Street');</Accordion>
<Accordion title="Text Editors">
const editor = await testdriver.find('text editor area');
await editor.click();
await testdriver.type('# My Document', 100);
await testdriver.pressKeys(['enter', 'enter']);
await testdriver.type('This is the first paragraph.', 50);</Accordion>
<Accordion title="Numeric Input">
const quantityField = await testdriver.find('quantity input');
await quantityField.click();
// CleaRepo: testdriverai/testdriverai
How the TestDriver agent behaves on GitHub issues, pull requests, and @mentions
Deploy TestDriver on your AWS infrastructure using CloudFormation
How TestDriver learns your app and caches what it discovers for instant, deterministic replays