1161004155
Results
1
comments of
1161004155
macaca server启动,中间件报错,需要修改/usr/local/lib/node_modules/macaca-cli/node_modules/webdriver-server/lib/server/controllers/cookie.js,替换为下面的内容: ```js 'use strict'; function *getAllCookies(next) { this.state.value = yield this.device.getAllCookies(); yield next; } function *getNamedCookie(next) { const body = this.request.body; const name = body.name; this.state.value = yield this.device.getNamedCookie(name);...