I want to scrape resultColumn from a website and i cannot have the results my code:
from urllib.request import urlopen as uReq
from bs4 import BeautifulSoup as soup
my_url = 'https://www.nab.com.au/locations?return#lunch'
uClient = uReq(my_url)
page_html = uClient.read()
uClient.close()
page_soup = soup(page_html, "html.parser")
containers = page_soup.findAll("div",{"class":"row collapse"})
containers[6].findAll("div","id":"resultColumn")
result column has some results, it does not provide me those results and only displays "<!-- Results -->"
Any help would be appreciated