模拟按键
命令说明
模拟键盘按键
命令原型
KeyBox.Press(uuid, sKey, sType, sKeyModifiers)
命令参数
参数 | 必选 | 类型 | 默认值 | 说明 |
---|---|---|---|---|
uuid | True | string | "" | UiBot KeyBox的唯一标识,用于区分不同的UiBot KeyBox |
sKey | True | enum | "Enter" | 选择需要模拟的键盘按键 |
sType | True | enum | "press" | 按键的类型,可选择单击、按下、弹起类型 |
sKeyModifiers | True | set | [] | 触发按键动作时同时按下的键盘按键,可以使用以下选项:Alt,Ctrl,Shift,Win按键 |
运行实例
/*****************************模拟按键********************************
命令原型:
KeyBox.Press(uuid, sKey, sType, sKeyModifiers)
入参:
uuid--设备号
sKey--模拟按键
sType--按键类型(单击/双击/按下/弹起)
sKeyModifiers--辅助按键
出参:
无
注意事项:
无
*********************************************************************/
KeyBox.Press("20000008", "Enter", "press", [])