mqscript_ui_setvisible
Control UI element visibility in mobile automation by setting the display state of specified controls using their ID and boolean visibility parameter.
Instructions
Set visibility of a UI control
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| id | Yes | Control ID | |
| visible | Yes | Visible state | 
Input Schema (JSON Schema)
{
  "properties": {
    "id": {
      "description": "Control ID",
      "type": "string"
    },
    "visible": {
      "description": "Visible state",
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "visible"
  ],
  "type": "object"
}