create_test_folder
Generate a test folder with a specified name on Android Debug Bridge MCP for organizing automation and testing environments efficiently.
Instructions
Create a test folder with the specified name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
test_name | Yes | Name of the test folder to create |
Input Schema (JSON Schema)
{
"properties": {
"test_name": {
"description": "Name of the test folder to create",
"type": "string"
}
},
"required": [
"test_name"
],
"type": "object"
}