At the moment I am trying to print out just the information that is held within the flex portion of this table of data, but I am not sure why it is not being read. Everytime I print it out it returns as:
<div id="app">
<div class="flex loader">
loading
</div>
</div>
Although I am not sure why it is not reading the data within the "loading" section.
This is my code:
import requests
from bs4 import BeautifulSoup
import selenium
URL = "https://thestatepress.github.io/SalaryList/dist/index.html?embed=true"
page = requests.get(URL)
soup = BeautifulSoup(page.content, "html.parser")
results = soup.find(id="app")
print(results.prettify())