I'm able to obtain a soup
object by passing a html object like so:
from bs4 import BeautifulSoup as bs
url = 'someurl.com'
html = urllib.request.urlopen(url)
soup = bs(html, "html.parser")
But the content of the element that I want does not appear until an action is taken on the page.
The soup that I obtain using this method does not have what I need.
What must I do to obtain an "updated" soup after the dom has been manipulated?