Files
voting-example/image-buiild/result/tests/render.js
Marco Verleun 7830150227
Some checks failed
Pre submits Lint / yamllint (push) Failing after 9s
renovate / renovate (push) Successful in 31s
Add image builds
2024-04-03 03:33:29 +02:00

16 lines
295 B
JavaScript

var system = require('system');
var page = require('webpage').create();
var url = system.args[1];
page.onLoadFinished = function() {
setTimeout(function(){
console.log(page.content);
phantom.exit();
}, 1000);
};
page.open(url, function() {
page.evaluate(function() {
});
});