1

casperjs を使用して Web サイトから .zip ファイルをダウンロードしようとしましたが、ダウンロードできません。

1) casper.thenOpen() で URL を開くと、「このファイルを開くか保存しますか?」という典型的なダウンロード ダイアログが表示されます。 casperjsで「開く」のではなく、ダウンロードしてください(これが必要です)。

2)現在、casper.download()を使用していますが、0バイトのファイルをダウンロードするだけです。ファイルのダウンロード先のアドレスを指定でき、要求されないため、より良いオプションだと思いますファイルをダウンロードします。必要なものをダウンロードするだけです。

これは私が実行しているスクリプトです:

var casper = require('casper').create({
    verbose: true,
    logLevel: 'debug',
    pageSettings: {
        loadImages:  true,         // The WebPage instance used by Casper will
        loadPlugins: false,         // use these settings
        userAgent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4'
    }
});

// print out all the messages in the headless browser context
casper.on('remote.message', function(msg) {
    this.echo('remote message caught: ' + msg);
});

// print out all the messages in the headless browser context
casper.on("page.error", function(msg, trace) {
    this.echo("Page Error: " + msg, "ERROR");
});

var url = 'http://website.com/';

casper.start(url, function() {
    // search for 'casperjs' from google form
    console.log("page loaded");
    this.then(function(){
        this.test.assertExists('form', 'form is found');
    });
    casper.then(function(){
    this.fill('form', {
        u: 'username',
        p:  'password'
    }, true);
    this.click("#submitButton");
    });
    this.wait(5000);
});

casper.page.settings.webSecurityEnabled = false;

casper.waitForUrl(/affiliates/, function(){
    this.echo ("start downloading");
    var url = 'http://website.com/affiliates/s.ashx?c=1977';
    this.download(url, '/home/enmanuel/Desktop/1977.zip');
    this.echo("finish download");
});

casper.then(function(){this.wait(5000);});

casper.run();

私は次のようなスクリプトを実行しています

casperjs UnionSquare.js --engine=slimerjs --disk-cache=no

現在、次のエラーが発生しています。

[エラー] [リモート] getBinary(): フェッチ中にエラーが発生しました: [例外... "失敗" nsresult: "0x80004005 (NS_ERROR_FAILURE)" 場所: "JS フレーム :: /usr/local/lib/node_modules/casperjs/modules/ clientutils.js :: sendAJAX :: 行 894" データ: いいえ]

アップデート

しばらくして回答を探したところ、キャスパーの制限ではなく、エンジンの制限であることがわかりました。ここで問題の現在のステータス

これに似たものを作りたい場合は、純粋なnodejsといくつかのモジュールでそれをやりました。これが私がやった方法です

4

0 に答える 0