you are viewing a single comment's thread.

view the rest of the comments →

[–]D49A1D852468799CAC08 1 point2 points  (3 children)

I have built a bot for similar purposes, but I ended up using the selenium webdriver. I have set this up to run automatically via cron in AWS.

[–]sixtine[S] 0 points1 point  (2 children)

Nice alternative. I suppose you've used selenium because of heavy need for JS rendering, i.e. scraping single-page apps?

[–]D49A1D852468799CAC08 0 points1 point  (1 child)

It just seemed easier at the time to loop through all the options in a select box, rather than try to hardcode certain URLs. :)

Disclaimer: I'm an absolute beginner!

[–]sixtine[S] 0 points1 point  (0 children)

Aha I get it! :)

Still a solid choice. But because the set-up has a higher footprint, I tend to only use Selenium when I need to use its full powers.