This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loadPage = (url) -> | |
casper.open(url).then -> | |
pageIcons = @evaluate -> | |
links = [] | |
$('a.thumbnail_link').each -> links.push $(@).attr('href') | |
links | |
# console.log pageIcons | |
allIcons.push icon for icon in pageIcons | |
hasNextPage = @evaluate -> $('.navigation a.next').length | |
# console.log hasNextPage |