You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
275 B
Markdown
14 lines
275 B
Markdown
10 years ago
|
# PhantomJS
|
||
|
|
||
|
```javascript
|
||
10 years ago
|
var page = require('webpage').create();
|
||
10 years ago
|
|
||
|
page.viewportSize = {width: 1280, height: 720};
|
||
|
|
||
|
page.open('http://phantomjs.org', function() {
|
||
|
page.render('phantomjs.png');
|
||
10 years ago
|
console.log('created phantomjs.png. ☮ out!');
|
||
10 years ago
|
phantom.exit();
|
||
|
});
|
||
10 years ago
|
```
|