Visiting multiple urls using PhantomJS evaluating

2019-04-16 23:00发布

问题:

I have this beautiful code, all I want to make some pause between visits, so I add a 'setinterval', but this not works:

var page = require('webpage').create();

// the urls to navigate to
var urls = [
    'http://blogger.com/',
    'https://github.com/',
    'http://reddit.com/'
                ];
    var i = 0;

// the recursion function
var genericCallback = setInterval(function () {
    return function (status) {
        console.log("URL: " + urls[i]);
        console.log("Status: " + status);
        // exit if there was a problem with the navigation
        if (!status || status === 'fail') phantom.exit();

        i++;

        if (status === "success") {

            //-- YOUR STUFF HERE ---------------------- 
            // do your stuff here... I'm taking a picture of the page
            page.render('example' + i + '.png');
            //-----------------------------------------

            if (i < urls.length) {

                // navigate to the next url and the callback is this function (recursion)
                page.open(urls[i], genericCallback());

            } else {
                // try navigate to the next url (it is undefined because it is the last element) so the callback is exit
                page.open(urls[i], function () {
                    phantom.exit();
                });
            }
        }
    };
},2000);

// start from the first url
page.open(urls[i], genericCallback());

the screenshot with the error I get: maybe someone could help me and heal this code? Because I'm new to JS and to PhantomJS, any help will be apreciate. I got this code from another stackoverflow answer here - Using Multiple page.open in Single Script but I can't comment to the author , because I don't have 50 reputation

回答1:

It should rather be something like this:

var page = require('webpage').create();

var urls = ['http://blogger.com/','https://github.com/','http://reddit.com/'];
var i = 0;

function OpenPage(){
    setTimeout(function(){
        page.open(urls[i], function(status) {
            if (status == 'success') {
                    page.render('example' + i + '.png');
            }
            i++;
            if(i <= urls.length - 1){ 
                OpenPage();
            }else{
               phantom.exit();
            }
        });
    },2000);
}

OpenPage();


标签: phantomjs