如何在Zombie.js

时间:2015-05-27 22:27:42

标签: zombie.js

在发出页面请求时,服务器会发送回标头作为响应的一部分。

如何在Zombie.js中有人从服务器访问响应头?

1 个答案:

答案 0 :(得分:2)

响应对象位于browser.resources

Documentation on browser.resources

一个例子

browser.visit('http://localhost:8080/index.html', function(err) {
    if(err) throw err;
    console.log(browser.resources['0'].response.headers);
    done();
});