Chris
Chris

Reputation: 18884

Send URL to Phantomjs?

screenshot.js

var page = require("webpage").create();
var homePage = "http://www.google.com/";
page.open(homePage);
page.onLoadFinished = function(status) {
  var url = page.url;
  console.log("Status:  " + status);
  console.log("Loaded:  " + url);
  page.render("google.png");
  phantom.exit();
};

Terminal:

bin/phantomjs screenshot.js

Question: Is there any way that I can send phantomjs the URL (value of var homePage above) somehow outside of screenshot.js so that its not hard coded inside the script?

Upvotes: 3

Views: 2655

Answers (1)

maazza
maazza

Reputation: 7193

Add the url to the command line

bin/phantomjs screenshot.js http://www.google.com/

Here you have an example from the docs :https://github.com/ariya/phantomjs/blob/master/examples/arguments.js

var system = require('system');
if (system.args.length === 1) {
    console.log('Try to pass some args when invoking this script!');
} else {
    system.args.forEach(function (arg, i) {
            console.log(i + ': ' + arg);
    });
}
phantom.exit();

Upvotes: 6

Related Questions