phantomjs/examples/arguments.js

9 lines
238 B
JavaScript
Raw Normal View History

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