Zombie.js 选项不再允许?

Zombie.js options not permitted any more?

我正在使用 Node.js 和 Zombie.js 为我的网站制作一个简单的测试脚本。我想让 'visits' 来自 chrome:

var UA = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36"

setInterval(function () {
        browser.visit('/', {userAgent: UA}, function(err) {
                assert.ifError(err);
        });
}, 1000);

这似乎可行,但问题是对于发出的每个请求,我都会在控制台中收到此错误:

visit with options is deprecated and will be removed soon

现在,Zombie.js 是否有更多 'correct' 的方法?或者,是否有其他选项可供我使用(例如 Phantomjs perjhaps)?

有什么想法吗?

您可以全局设置选项。

zombie.labnotes.org/API