Javascript 使用phantomjs获取动态生成的内容

Javascript 使用phantomjs获取动态生成的内容,javascript,web-scraping,phantomjs,Javascript,Web Scraping,Phantomjs,我想从该网页获取以下内容: 仅当我向下滚动时,下方的应用程序才会显示。我尝试了几种解决方案,例如: 当前内容的工作解决方案(无需滚动即可直接获得)是: 包括页面。滚动位置也没有帮助。如何获取动态生成的内容 var page = require('webpage').create(); var fs = require('fs'); page.open('https://play.google.com/store/apps/category/BUSINESS/collection/topse

我想从该网页获取以下内容:

仅当我向下滚动时,下方的应用程序才会显示。我尝试了几种解决方案,例如:

当前内容的工作解决方案(无需滚动即可直接获得)是:

包括
页面。滚动位置也没有帮助。如何获取动态生成的内容

var page = require('webpage').create();
var fs = require('fs');
page.open('https://play.google.com/store/apps/category/BUSINESS/collection/topselling_paid', function () {
    page.evaluate(function(){

    });

    page.render('export.png');
    fs.write('test.html', page.content, 'w');
    phantom.exit();
});