如何调用this.remote里面.then()

时间:2015-11-08 09:47:22

标签: javascript node.js intern

如果我有类似

的话
return this.remote
    .findByXpath('xpath to open menu').click().end()
    .then(function() {
        // check menu items
        ...
        return this.remote
            .findByXpath('xpath to close menu').click.end()
    });

它给我一个ECONNREFUSED错误。如何使用this.remote Command对象嵌套调用?

0 个答案:

没有答案