【发布时间】:2015-04-09 20:57:54
【问题描述】:
我尝试让 CasperJS 实现以下目标:
- 浏览一系列按日期顺序命名的页面。
- 在每一页上,找到一个 PDF 链接。
- 下载 PDF。
我有一些工作代码,但我不明白 CasperJS 是如何处理事件序列的。
例如,在下面的代码示例中,CasperJS 尝试处理第 2 步,并抛出“ReferenceError: Can't find variable: formDate”,而第 1 步由于某种原因根本没有执行。
我的推理有什么问题?
在我看来,while 循环的执行速度与 casper.then 方法不同。
casper.start();
casper.thenOpen('http://www.example.com', function() {
this.echo(this.getTitle());
});
casper.then(function() {
var start = new Date('2013-01-01T00:00:00');
var end = new Date('2013-01-31T00:00:00');
while(start < end) {
// step 1: define formDate
casper.then(function() {
var formDate = start.getFullYear()+"-"+("0" + (start.getMonth() + 1)).slice(-2) +"-"+("0" + start.getDate()).slice(-2) ;
casper.echo(formDate);
});
// Step 2: open the page and download the file
casper.thenOpen('http://www.example.com/' + formDate, function() {
var url = this.getElementAttribute('div#pdffulllink a.pdf', 'href');
this.echo(url);
this.download(url, 'Downloaded_' + formDate + '.pdf');
});
casper.then(function() {
// Step 3: redefine start
var newDate = start.setDate(start.getDate() + 1);
start = new Date(newDate);
});
}
});
casper.run(function() {
this.echo('Done.').exit();
});
【问题讨论】:
标签: javascript while-loop casperjs