使用casper.on("resource.requested"),我们可以捕获资源请求并执行评估检查。
在页面加载时,我们将所有网络请求 URL 推送到一个数组中,然后遍历该数组以查找对 GOOGLE Analytics 的调用次数(即 _utm.gif)。
// google analytics calls testing
casper.test.begin('Test Container Tags', function suite(test) {
casper.start("http://www.viget.com/", function() {
});
var urls = [],
links = [];
casper.on('resource.requested', function(requestData, resource) {
urls.push(decodeURI(requestData.url));
});
casper.then(function() {
var index = -1;
var found = 0;
for (var i = 0; i < urls.length; i++)
{
index = urls[i].indexOf('__utm.gif');
if (index > -1)
found = found+1;
}
casper.echo('found' + found);
test.assert(found > 0, 'Page Load Test Complete');
});
//Emit "resource.requested" to capture the network request on link click
casper.then(function(self) {
var utils = require('utils');
var x = require('casper').selectXPath;
casper.click(x("//a[data-type]"));
casper.emit('resource.requested');
});
casper.run(function() {
test.done();
});
});
但是,现在下一个 Ask 是验证超链接点击事件上的网络资源请求。尝试使用casper.emit("resource.requested")使其工作,但没有成功。
已经花了一整天的时间来找到相同的解决方法。在这一点上,任何反馈都将不胜感激。