网页抓取 - 如何使用 PhantomJS 在页面之间导航



我想只使用phantomjs在同一page.open(url, function(status) { }内的页面之间导航。这可能吗?

例:

page.open(url, function(status) {
    page.includeJs("https://code.jquery.com/jquery-3.0.0.slim.min.js", function() {
        var response = page.evaluate(function() {
            ..code..
            window.location.replace('new url');
            ..code for new url..
            return response;
         });
        console.log(response);
        phantom.exit();
    });
});

任何帮助,不胜感激。

我只是发现最好的选择是使用casperjs。

casperjs.org

相关内容

  • 没有找到相关文章

最新更新