mqscript_ui_setenabled
Enable or disable a UI control in mobile automation scripts by specifying the control ID and desired state using MQScript MCP Server.
Instructions
Set enabled state of a UI control
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | Enable state | |
id | Yes | Control ID |
Input Schema (JSON Schema)
{
"properties": {
"enabled": {
"description": "Enable state",
"type": "boolean"
},
"id": {
"description": "Control ID",
"type": "string"
}
},
"required": [
"id",
"enabled"
],
"type": "object"
}