提交 66327d75 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

fix(uts): automator getElement not exists

上级 9f52bab4
......@@ -28,8 +28,11 @@ export const getElement = (params: GetElementParams, callback: Callback): void =
}
const list: UTSJSONObject[] = []
getValidNodes(element, selector, list)
const result = list.length > 0 ? list[0] : null
callback(result, null)
if (list.length > 0) {
callback(list[0], null)
} else {
callback(null, { errMsg: `Element[${params.selector}] not exists` })
}
}
}
......
......@@ -63,8 +63,11 @@ export const getElement = (params: GetElementParams, callback: Callback): void =
}
const list: UTSJSONObject[] = []
getValidComponentsOrNodes(page.$.subTree, selector, list)
const result = list.length > 0 ? list[0] : null
callback(result, null)
if (list.length > 0) {
callback(list[0], null)
} else {
callback(null, { errMsg: `Element[${params.selector}] not exists` })
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册