Requests-html vs. Selenium
So I'm just getting into web scraping and began my journey using BeaitifulSoup4. While I enjoy it's simplicity, it's very limited when attempting to scrape data from dynamic sites that use a lot of JavaScript. My next step was going to be to start learning the Selenium framework but then I discovered the requests-html library. I couldn't help but be attracted to it's bs4-like simplicity while being able to render JavaScript to extract data from it. My question is: Can requests-html completely replace the need for using selenium, or does it have limitations that still lead to the need of using selenium for some projects? P.S. I'm aware of the scrapy framework but for now want to get a solid grip on the basics of scraping before I dive into the more advanced world and functionality of scrapy.