mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-12-17 08:54:19 +08:00
window自动化分类:1.新增选择窗口(inspect),支持高亮指定元素,并查看元素的名称、类型、句柄、xpath等各项属性及所在窗口各项属性 2.新增界面自动化,支持通过xpath、name、id等条件在对指定元素执行点击、设置值、模拟输入、高亮等操作
This commit is contained in:
@@ -329,7 +329,9 @@ export default defineComponent({
|
||||
if (this.options.multiSelect) {
|
||||
this.toggleSelectItem(option);
|
||||
} else {
|
||||
const value = this.getItemValue(option);
|
||||
const value = this.options.appendItem
|
||||
? `${this.inputValue}${this.getItemValue(option)}`
|
||||
: this.getItemValue(option);
|
||||
this.$emit("update:modelValue", newVarInputVal("str", value));
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user