由于不熟悉js或coffeescript,我打算使用casperjs来下载页面并使用python来解析它。但是我发现我下载的页面与我在浏览器中看到的页面不一样——实际上其中的某些部分在页面保存之前还没有加载。我猜原因可能是没有执行 onload 回调。如果我想下载与我在浏览器中看到的页面相同的页面,我应该怎么做?非常感谢!
我的代码(咖啡脚本):
urls =
'jd' : 'http://list.jd.com/652-654-831-0-0-0-0-0-0-0-1-1-1-1-1-72-4137-33.html'
casper = require("casper").create()
process = (urls) ->
casper.start "", ->
@echo "begin to work"
for name, url of urls
casper.thenOpen url, ->
@echo @download url, "#{name}.html"
process(urls)
casper.run()