I am trying web scrape the list from a real estate website for example https://nz.hougarden.com/house-search/type_sold_category_9_district_waitakere-city-230_order_0_page_2
I see the listings are within class called column col-3 col-lg-12 col-xl-6 col-4x-4
page_soup = soup(webpage,"html.parser")
containers = page_soup.findAll("div",{"class":"column col-3 col-lg-12 col-xl-6 col-4x-4"})
len(containers) returns 0?
is it because there is a hidden container with 0 data so it returns empty?
<div class="column col-3 col-lg-12 col-xl-6 col-4x-4" style="display: none;"><!----></div>
If so how do I get around this or can someone please help me to make it work?
Thanks