最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Pass URL to CasperJS via CLI - Stack Overflow

programmeradmin0浏览0评论

I'm using CasperJS to evaluate a webpage. What I would like to do is to let me pass an argument that is a URL, have CasperJS download and evaluate the page, and output to standard out the webpage so I can use it in a BaSH script. Here is my code so far for Casper:

var casper = require('casper').create();
var url = casper.cli.args;

casper.start(url, function() {
    this.evaluate(function() {
        return document;
    });
    this.echo(this.getHTML());
});
casper.run();

This is what I'm seeing once I run it:

@:~/spider/casperjs$ casperjs viewsource.js google
CasperError: No steps defined, aborting                                         
  /usr/local/src/casperjs/modules/casper.js:1510 in run
  ~/spider/casperjs/viewsource.js:10

Help please.

I'm using CasperJS to evaluate a webpage. What I would like to do is to let me pass an argument that is a URL, have CasperJS download and evaluate the page, and output to standard out the webpage so I can use it in a BaSH script. Here is my code so far for Casper:

var casper = require('casper').create();
var url = casper.cli.args;

casper.start(url, function() {
    this.evaluate(function() {
        return document;
    });
    this.echo(this.getHTML());
});
casper.run();

This is what I'm seeing once I run it:

@:~/spider/casperjs$ casperjs viewsource.js google.
CasperError: No steps defined, aborting                                         
  /usr/local/src/casperjs/modules/casper.js:1510 in run
  ~/spider/casperjs/viewsource.js:10

Help please.

Share Improve this question edited Mar 24, 2014 at 8:27 Brice Favre 1,5171 gold badge17 silver badges36 bronze badges asked Mar 23, 2014 at 3:50 MoneyBagMoneyBag 1131 silver badge7 bronze badges 1
  • Possible duplicate of How to pass a variable to a CasperJS script through the mand line? – Ciro Santilli OurBigBook. Commented Nov 17, 2015 at 21:48
Add a ment  | 

3 Answers 3

Reset to default 6

If you want to name your argument :

mand :

casperjs viewsource.js --url="http://YourUrl."

script :

var mainUrl = casper.cli.get("url");

casper.start(mainUrl)
.then(......)

try this

  var url = casper.cli.get(0)

I finally got it. here is the script:

var casper = require('casper').create();
var url = casper.cli.get(0);

casper.start(url, function () {
    this.evaluate(function() {
        return document;
    });
    this.echo(this.getHTML());
});
casper.run(function() {
    this.exit();
});
发布评论

评论列表(0)

  1. 暂无评论