使用CasperJS点击链接后下载CSV

时间:2015-09-21 13:58:31

标签: javascript download click casperjs

我创建了一个脚本,该脚本登录到我的银行帐户,导航到交易页面,然后尝试下载所有交易数据的CSV。但是,点击"下载"按钮,永远不会下载资源。点击按钮时调用的资源是" download.qfx"每次都会生成不同的文件名。任何帮助将不胜感激。

// When download page loads, click the appropriate settings and download transactions
casper.then(function(){
    this.waitForSelector("#transactionPeriod", function() {
       this.evaluate(function() {
           document.querySelector('#transactionPeriod').selectedIndex = 0; //it is obvious
           return true;
        });
        this.clickLabel("Spreadsheet (Comma Separated Values)", "label");
    });
});
// Click the download button
casper.then(function(){
   casper.click(x("//a[contains(text(), 'Download')]"));
});
// Save the download file
casper.then(function(){
         casper.download("https://secure.capitalone360.com/myaccount/download.qfx", "export.csv");
});

这是来自检查员的图像,以防任何这些细节有助于澄清问题。 enter image description here

更新 我也尝试过,但在"下载"之后调试器中没有输出。点击事件。

casper.then(function(){
   casper.click(x("//a[contains(text(), 'Download')]"));
});

casper.on('resource.received', function(resource) {
    if (resource.stage !== "end") {
        console.log("resource.stage !== 'end'");
        return;
    }
    if (resource.url.indexOf('download.qfx') > -1) {
        console.log("Downloading csv file");
        this.download(resource.url, 'ExportData.csv');
    }
});

此外,如果我输入console.log(resource.url),我从未见过download.qfx。也许这暗示了什么是错的?

1 个答案:

答案 0 :(得分:0)

单击该链接似乎不会导致应该发生的onClick javascript调用。所以,然后我测试了:

casper.then(function(){
   //casper.click(x("//a[contains(text(), 'Download')]"));
    casper.evaluate(function(){
        urchinTracker('/download_transactions/continue');
        submitForm('download');
        return false; 
    });
});

casper.on('resource.received', function(resource) {
    //console.log(resource.url);
    if (resource.stage !== "end") {
        return;
    }
    if (resource.url.indexOf('download.qfx') !== -1) {
        this.download(resource.url, 'ExportData.csv');
    }
});

因此,出于某种原因,必须单独调用onClick函数。