我想只使用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