This chapter is all about handling websites that utilize JavaScript to render information dynamically.
You have seen in the previous chapters that a basic website scraper loads the web page’s contents and does its extraction on this source code. And if there’s JavaScript included, it’s not executed, and the dynamic information is missing from the page.
This is bad, at least in those cases where you need that dynamic data.
Another interesting part of scraping websites that use JavaScript is that you may need clicks or button presses to go to the right page / get the right content, ...