'What's the best way to manually save a webpage's html, so I can practice my parsing skills? (Right Clicking in Chrome isn't working)

I am just getting started on my first web scraping project.

Before I go and install a headless browser etc, I thought I would just save the page manually and work on parsing the dom, as a mini project.

Well, Trying to just save the page with right-clicking and saving the file as -> HTML only.... is not resulting in an HTML file with any of the information I am looking to parse.

I see the information I want in HTML tags, when I open the console. How can I get the HTML with the information in an external file, so that I can play with loading it into my js script?

Also curious why it is that right-clicking in chrome -> save as -> Html ONLY, is producing such different than expected results?

This is the page, I am trying to parse: link I am just trying to pull out all the prices associated with real estate, which are in the console obviously, but not in my downloaded HTML files....

Thanks! First ever stack overflow post, --Noob.

.....



Solution 1:[1]

F12 -> elements panel -> right click on html element and copy / copy outerHTML

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 pguardiario