从填充了javascript的网站获取内容

时间:2014-11-27 23:07:27

标签: javascript html simple-html-dom

我使用" Simple Html Dom"刮到网站,但我有一个问题。在我检查页面的位置,我看到div具有特定ID,但是当我检查源代码时,id没有出现。

这意味着我的simplehtmldom图书馆无法获取div内的信息。

1 个答案:

答案 0 :(得分:2)

使用 casper - 这是js的一个库,它真的很简单:

casper.start('http://my.website.com/');

casper.waitForSelector("#plop", function() 
{
    this.echo("I'm sure #plop is available in the DOM");
});

查找更多@官方文档:http://casperjs.readthedocs.org/en/latest/modules/casper.html