Hey! R scraping can be a pain, especially with dynamic content. I’ve been there. For dynamic stuff, RSelenium is a solid choice, but it’s slow. Have you tried `htmlunit` or `phantomjs`? They’re headless browsers that might speed things up.
For pagination, I usually write a loop with a try-catch block to handle errors when the script breaks. Also, check out `httr` for handling sessions—it’s a lifesaver for maintaining state across pages.
Good luck, and don’t give up!
For pagination, I usually write a loop with a try-catch block to handle errors when the script breaks. Also, check out `httr` for handling sessions—it’s a lifesaver for maintaining state across pages.
Good luck, and don’t give up!
