testdriverai 7.9.54-test → 7.9.55-test
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ai/agents/testdriver.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: testdriver
|
|
3
3
|
description: An expert at creating and refining automated tests using TestDriver.ai
|
|
4
|
-
tools: ['vscode/getProjectSetupInfo', 'vscode/installExtension', 'vscode/newWorkspace', 'vscode/openSimpleBrowser', 'vscode/runCommand', 'vscode/askQuestions', 'vscode/switchAgent', 'vscode/vscodeAPI', 'vscode/extensions', 'execute/runNotebookCell', 'execute/testFailure', 'execute/getTerminalOutput', 'execute/awaitTerminal', 'execute/killTerminal', 'execute/runTask', 'execute/createAndRunTask', 'execute/runInTerminal', 'execute/runTests', 'read/getNotebookSummary', 'read/problems', 'read/readFile', 'read/readNotebookCellOutput', 'read/terminalSelection', 'read/terminalLastCommand', 'read/getTaskOutput', 'agent/runSubagent', 'edit/createDirectory', 'edit/createFile', 'edit/createJupyterNotebook', 'edit/editFiles', 'edit/editNotebook', 'search/changes', 'search/codebase', 'search/fileSearch', 'search/listDirectory', 'search/searchResults', 'search/textSearch', 'search/usages', 'search/searchSubagent', 'web/fetch', 'web/githubRepo', 'testdriver/assert', 'testdriver/check', 'testdriver/click', 'testdriver/exec', 'testdriver/find', 'testdriver/find_and_click', 'testdriver/findall', 'testdriver/focus_application', 'testdriver/hover', 'testdriver/list_local_screenshots', 'testdriver/press_keys', 'testdriver/screenshot', 'testdriver/scroll', 'testdriver/session_extend', 'testdriver/session_start', 'testdriver/session_status', 'testdriver/type', 'testdriver/view_local_screenshot', 'testdriver/wait', 'todo']
|
|
4
|
+
tools: ['vscode/getProjectSetupInfo', 'vscode/installExtension', 'vscode/newWorkspace', 'vscode/openSimpleBrowser', 'vscode/runCommand', 'vscode/askQuestions', 'vscode/switchAgent', 'vscode/vscodeAPI', 'vscode/extensions', 'execute/runNotebookCell', 'execute/testFailure', 'execute/getTerminalOutput', 'execute/awaitTerminal', 'execute/killTerminal', 'execute/runTask', 'execute/createAndRunTask', 'execute/runInTerminal', 'execute/runTests', 'read/getNotebookSummary', 'read/problems', 'read/readFile', 'read/readNotebookCellOutput', 'read/terminalSelection', 'read/terminalLastCommand', 'read/getTaskOutput', 'agent/runSubagent', 'edit/createDirectory', 'edit/createFile', 'edit/createJupyterNotebook', 'edit/editFiles', 'edit/editNotebook', 'search/changes', 'search/codebase', 'search/fileSearch', 'search/listDirectory', 'search/searchResults', 'search/textSearch', 'search/usages', 'search/searchSubagent', 'web/fetch', 'web/githubRepo', 'testdriver/assert', 'testdriver/check', 'testdriver/click', 'testdriver/exec', 'testdriver/find', 'testdriver/find_and_click', 'testdriver/findall', 'testdriver/focus_application', 'testdriver/hover', 'testdriver/init', 'testdriver/list_local_screenshots', 'testdriver/press_keys', 'testdriver/screenshot', 'testdriver/scroll', 'testdriver/session_extend', 'testdriver/session_start', 'testdriver/session_status', 'testdriver/type', 'testdriver/view_local_screenshot', 'testdriver/wait', 'todo']
|
|
5
5
|
mcp-servers:
|
|
6
6
|
testdriver:
|
|
7
7
|
command: npx
|
|
@@ -294,7 +294,7 @@ When creating a new test project, use these exact dependencies:
|
|
|
294
294
|
{
|
|
295
295
|
"type": "module",
|
|
296
296
|
"devDependencies": {
|
|
297
|
-
"testdriverai": "
|
|
297
|
+
"testdriverai": "canary",
|
|
298
298
|
"vitest": "^4.0.0"
|
|
299
299
|
},
|
|
300
300
|
"scripts": {
|
|
@@ -303,7 +303,7 @@ When creating a new test project, use these exact dependencies:
|
|
|
303
303
|
}
|
|
304
304
|
```
|
|
305
305
|
|
|
306
|
-
**Important:** The package is `testdriverai` (NOT `@testdriverai/sdk`). Always install from the `
|
|
306
|
+
**Important:** The package is `testdriverai` (NOT `@testdriverai/sdk`). Always install from the `canary` tag.
|
|
307
307
|
|
|
308
308
|
## Test File Format
|
|
309
309
|
|
|
@@ -50,12 +50,12 @@ Get your API key at: **https://console.testdriver.ai/team**
|
|
|
50
50
|
|
|
51
51
|
### Installation
|
|
52
52
|
|
|
53
|
-
Always use the **
|
|
53
|
+
Always use the **canary** tag when installing TestDriver:
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
npm install --save-dev testdriverai@
|
|
56
|
+
npm install --save-dev testdriverai@canary
|
|
57
57
|
# or
|
|
58
|
-
npx testdriverai@
|
|
58
|
+
npx testdriverai@canary init
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
### Test Runner
|