mqscript_ui_addcheckbox
Add a checkbox control to mobile UI automation scripts with customizable ID, label text, and initial checked state for user interaction scenarios.
Instructions
Add a checkbox control
Input Schema
Name | Required | Description | Default |
---|---|---|---|
checked | No | Initial checked state | |
id | Yes | Control ID | |
text | No | Checkbox label text | Checkbox |
Input Schema (JSON Schema)
{
"properties": {
"checked": {
"default": false,
"description": "Initial checked state",
"type": "boolean"
},
"id": {
"description": "Control ID",
"type": "string"
},
"text": {
"default": "Checkbox",
"description": "Checkbox label text",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}