We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to... ,open a page, get the page data, then click next page, continue to get page data, all the way to the target page, my code for now
nightmare .goto(`https://www.appinn.com/`) .wait('.latestPost') .wait(() => { window.htmlArr = window.htmlArr || [] if (!document.querySelector('.latestPost')) { return false } window.htmlArr.push(document.querySelector('#latest-posts').innerHTML) let currentPage = document.querySelector('.page-numbers.current') if (currentPage && currentPage.innerHTML == 5) { return true } let nextBtn = document.querySelector(".nav-links .next") if (nextBtn) { nextBtn.click() return false } return true }) .evaluate(() => { return window.htmlArr }) .end() .then(htmlList => { conosle.log(htmlList ) })
htmlList only last page data, none others page data
What should I do? thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to... ,open a page, get the page data, then click next page, continue to get page data, all the way to the target page,
my code for now
htmlList only last page data, none others page data
What should I do? thank you.
The text was updated successfully, but these errors were encountered: