求助,最近要入自动化 ui 的坑,选定了 Macaca,运行官方例子报错 java.lang.Integer cannot be cast to java.lang.String,查看了问题代码是:

private boolean findElement(JSONObject jsonObject) throws Exception {
        jsonObject.put("sessionId", contexts.getSessionId());
        JSONObject response = (JSONObject) utils.request("POST", DriverCommand.FIND_ELEMENT, jsonObject);
        JSONObject tmpElement = (JSONObject) response.get("value");
        String elementId = (String) tmpElement.get("ELEMENT"); --问题代码地方
        if (elementId != null) {
            // the element exists
            // contexts.setElementId(elementId);
            // fix bug:The new element covers the old element
            element = new Element(elementId, contexts);
            return true;
        } else {
            // the element does not exist
            return false;
        }

    }

这个怎么破。。。


↙↙↙阅读原文可查看相关链接,并与作者交流