我是casperJS的新手,我很感激有人告诉我如何使用同一个网站的css类来获取所有信息。 例如,有一个项目列表,所有项目都有相同的css类,我想检索所有列表。
答案 0 :(得分:1)
我建议使用casper.getElementsInfo()
:
casper.start('https://www.example.com/', function () {
var example = this.getElementsInfo('.example');
this.echo(example[0].text);
});