fill_form_by_uid
Fill multiple form fields simultaneously by providing UID-value pairs for browser automation and testing workflows.
Instructions
Fill multiple form fields in one call using an array of {uid, value} pairs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
elements | Yes | Array of form field UIDs with their values |
Input Schema (JSON Schema)
{
"properties": {
"elements": {
"description": "Array of form field UIDs with their values",
"items": {
"properties": {
"uid": {
"description": "The UID of the form field",
"type": "string"
},
"value": {
"description": "The value to fill",
"type": "string"
}
},
"required": [
"uid",
"value"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"elements"
],
"type": "object"
}