I'm currently trynig to https://www.wolframalpha.com/input/?i=AAPL+price and get to the h2 tag that includes the text "Market Data".
I am doing this using BeautifulSoup by finding all h2 tags and checking h2.text for "Market Data".
However, the problem is the soup version of this url's text does not include any h2 tags. This contrasts with when I click "inspect element" and find h2s in Chrome. Why can't I see h2s when I do soup(url.text)? Does that mean its not a static page or something? How then can I scrape this h2 tag?