mqscript_sys_gettime
Retrieves the current system time in a specified format for use in mobile automation scripts, allowing precise timing control in device operations.
Instructions
Get current system time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Time format string | yyyy-MM-dd HH:mm:ss |
resultVariable | No | Variable name to store time | currentTime |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "yyyy-MM-dd HH:mm:ss",
"description": "Time format string",
"type": "string"
},
"resultVariable": {
"default": "currentTime",
"description": "Variable name to store time",
"type": "string"
}
},
"required": [],
"type": "object"
}