mqscript_device_getinfo
Retrieve specific device details such as model, brand, version, screen dimensions, or DPI for mobile automation scripting and device control.
Instructions
Get device information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
infoType | No | Type of device info to get | model |
resultVariable | No | Variable name to store result | deviceInfo |
Input Schema (JSON Schema)
{
"properties": {
"infoType": {
"default": "model",
"description": "Type of device info to get",
"enum": [
"model",
"brand",
"version",
"screenWidth",
"screenHeight",
"dpi"
],
"type": "string"
},
"resultVariable": {
"default": "deviceInfo",
"description": "Variable name to store result",
"type": "string"
}
},
"required": [],
"type": "object"
}