add stuff for how to do load testing

This commit is contained in:
John McLear 2012-02-25 16:54:27 +00:00
parent 9790598381
commit bbaa6bb7d2
3 changed files with 111 additions and 0 deletions

20
bin/loadTesting/loader.js Normal file
View file

@ -0,0 +1,20 @@
var page = new WebPage(),
t, address;
if (phantom.args.length === 0) {
console.log('Usage: loader.js <some URL>');
phantom.exit();
} else {
t = Date.now();
address = phantom.args[0];
var page = new WebPage();
page.onResourceRequested = function (request) {
console.log('Request ' + JSON.stringify(request, undefined, 4));
};
page.onResourceReceived = function (response) {
console.log('Receive ' + JSON.stringify(response, undefined, 4));
};
page.open(address);
}