An open API service indexing awesome lists of open source software.

https://github.com/vanhakobyan/phantomjs_projects

PhantomJS study and projects
https://github.com/vanhakobyan/phantomjs_projects

Last synced: 6 months ago
JSON representation

PhantomJS study and projects

Awesome Lists containing this project

README

          

## Example 1 - Find the Page Speed

#### In this example, we will use PhantomJS to find the page speed for any given page URL.

```JS var page = require('webpage').create(),
system = require('system'),
t, address;

if (system.args.length === 1) {
console.log('Usage: loadspeed.js ');
phantom.exit(1);
} else {
t = Date.now();
address = system.args[1];

page.open(address, function (status) {
if (status !== 'success') {
console.log('FAIL to load the address');
} else {
t = Date.now() - t;

console.log('Page title is ' + page.evaluate(function () {
return document.title;
}));
console.log('Loading time ' + t + ' msec');
}
phantom.exit();
});
}
```