我使用" Simple Html Dom"刮到网站,但我有一个问题。在我检查页面的位置,我看到div
具有特定ID,但是当我检查源代码时,id
没有出现。
这意味着我的simplehtmldom
图书馆无法获取div
内的信息。
答案 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