1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
| { "id": "hello-world", "name": "hello-world", "description": "say hello from UiAuto!", "version": "1.0.0", "author": "UiAuto", "language": "nodejs", "license": "MIT", "dependencies": { "lodash": "4.17.11" }, "uiauto_config": { "attribution_id": "software_automation", "attribution_name": "软件自动化", "operations": [{ "category_id": "plugin-template", "category_name": "模板插件", "operation_name": "插件一", "method": "sayHello", "input": [{ "name": "必填属性", "id": "required_params", "properties": [{ "id": "addressee", "name": "用户名", "type": "text", "required": true, "value": "uiauto_group" }, { "id": "file", "name": "文件", "type": "file", "required": true, "value": "" } ] }, { "name": "可选属性", "id": "unrequired_params", "properties": [{ "id": "drink", "name": "饮品", "required": false, "type": "select", "value": "tea" "options": { "multiple": true, "choices": [{ "value": "juice", "label": "果汁" }, { "value": "coffee", "label": "咖啡" }, { "value": "tea", "label": "茶" }] } }] }], "output": { "is_allow_global_use": true, "description": "返回执行结果,true 或者 false", "value": "" } }] } }
|