如何使用phantomjs在页面之间导航

时间:2016-07-07 21:48:52

标签: web-scraping 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();

    });
});

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

我只是想知道这样做的最佳选择是使用casperjs。

casperjs.org