> Forums > Java

P

PhantomJS - Scriptable Headless Browser

Erstellt
Jul. '16
letzte Antwort
Noch keine
Antworten
Noch keine
Aufrufe
7.2T
11
„Gefällt mir“
Abos
Noch keine
Do., 28. Juli, 2016 um 22:44
#1

PhantomJS is a headless web browser scriptable with JavaScript. It runs on Windows, macOS, Linux, and FreeBSD.

Using QtWebKit as the back-end, it offers fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.

The following simple script for PhantomJS loads Google homepage, waits a bit, and then captures it to an image.

Code:
var page = require('webpage').create();
page.open('http://www.google.com', function() {
setTimeout(function() {
page.render('google.png');
phantom.exit();
}, 200);
});


Mehr unter:
https://phantomjs.org

> Forums > Java

Du hast bereits für diesen Post abgestimmt...

;-)



Logo https://t.ress.at/5G4Xn/


Ähnliche Themen:











Top