Trying to parse HTML data from the DOM, when I use Chrome's Developer Tools I can see that data in the console. When I save the page as HTML locally and search for the targeted data it can't be found. I've done some reading about how the static HTML file is what the browser receives, and how Javascript will render it differently for presentation.
Specific example: Google "nba", there results include a table at top of the page with all the scheduled games for the day nested inside a <tbody>
, if you save this page, the HTML file does not contain a <tbody>
tag. Trying to parse this table of games using BeautifulSoup4 with Python.