I am trying to run phantomJS for the first time, and I have successfully extracted som data from the site, but when I try to write some content to a file, I get an error: ReferenceError: I can not find the variable: fs
Here is my script
var page = require('webpage').create(); var fs = require('fs'); page.onConsoleMessage = function(msg) { console.log(msg); }; page.open("http://www.pinterest.com/search/pins/?q=motorbike", function(status) { if (status === "success") { page.includeJs("http://code.jquery.com/jquery-latest.js", function() { page.evaluate(function() { var imgs = { title: [], href: [], ext: [], src: [], alt: [] }; $('a.pinImageWrapper').each(function() { imgs.title.push($(this).attr('title')); imgs.href.push($(this).attr('href')); var ext = $(this).children('.pinDomain').html(); imgs.ext.push(ext); var img = $(this).children('.fadeContainer').children('img.pinImg'); imgs.src.push(img.attr('src')); imgs.alt.push(img.attr('alt')); }); if (imgs.title.length >= 1) { for (var i = 0; i < imgs.title.length; i++) { console.log(imgs.title[i]); console.log(imgs.href[i]); console.log(imgs.ext[i]); console.log(imgs.src[i]); console.log(imgs.alt[i]); } } else { console.log('No pins found'); } fs.write('foo.txt', 'bar'); }); phantom.exit(); }); } });
What am I missing here?
Edit: From the answer to this question, I found out why I could not reach the data inside evalute and how I could access it.
var page = require('webpage').create(); var fs = require('fs'); page.onConsoleMessage = function(msg) { console.log(msg); }; openPinPage('motorbike'); function openPinPage(keyword) { page.open("http://www.pinterest.com/search/pins/?q=" + keyword, function(status) { if (status === "success") { page.includeJs("http://code.jquery.com/jquery-latest.js", function() { getImgsData(); }); } }); } function getImgsData() { var data = page.evaluate(function() { var imgs = { title: [], href: [], ext: [], src: [], alt: [] }; $('a.pinImageWrapper').each(function() { imgs.title.push($(this).attr('title')); imgs.href.push($(this).attr('href')); var ext = $(this).children('.pinDomain').html(); imgs.ext.push(ext); var img = $(this).children('.fadeContainer').children('img.pinImg'); imgs.src.push(img.attr('src')); imgs.alt.push(img.attr('alt')); }); return imgs; }); for (var i = 0; i < data.title.length; i++) { console.log(data.title[i]); }; phantom.exit(); }
source share