qt_set_property
Write a property value on a UI element in a live Qt application. Directly changes the app's state, so use when a direct API write is intended.
Instructions
Write a property value on a UI element.
DESTRUCTIVE: directly modifies the target application's state (may trigger property-notify signals, change geometry/visibility/business state) with no undo. Prefer real user input (clicks/typing) to simulate user actions; use this only when a direct API write is intended.
value is first parsed as JSON: "true" -> bool, "123" -> int,
""hello"" -> string. Unparseable text is sent as a plain string —
pass quoted strings explicitly when a string is intended.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| value | Yes | ||
| element_id | Yes | ||
| session_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |