This file contains 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
let grabPosts = await page.evaluate(() => { | |
let allPosts = document.body.querySelectorAll('.Post'); | |
// storing the post items in an array then selecting for retrieving content | |
scrapeItems = []; | |
allPosts.forEach(item => { | |
let postTitle = item.querySelector('h3'); | |
let postDescription = item.querySelector('p'); | |
scrapeItems.push({ | |
postTitle: postTitle ? postTitle.innerText : null, | |
postDescription: postDescription ? postDescription.innerText : null, | |
}); | |
}); | |
let items = { | |
"redditPosts": scrapeItems, | |
}; | |
return items; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment