如果我有类似
的话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对象嵌套调用?