midscene_aiInput
Input text into web form fields using natural language descriptions to identify elements, simplifying test automation with AI-powered interaction capabilities.
Instructions
Inputs text into a specified form field or element identified by a natural language selector.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locate | Yes | Describe the element to input text into, use natural language | |
value | Yes | The text to input |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"locate": {
"description": "Describe the element to input text into, use natural language",
"type": "string"
},
"value": {
"description": "The text to input",
"type": "string"
}
},
"required": [
"value",
"locate"
],
"type": "object"
}