I want to get the HTML and objects rendered on the site https://study.innspector.dbvis.de/ I'm using python and tried
from bs4 import BeautifulSoup
driver = webdriver.Chrome()
driver.get('https://study.innspector.dbvis.de/')
content = driver.page_source
soup = BeautifulSoup(content, "html5lib")
print(soup)
also tried
with sync_playwright() as playwright:
browser = playwright.chromium.launch(headless=False)
page = browser.new_page()
page.set_viewport_size({"width": 2220, "height": 1280})
page.goto("https://study.innspector.dbvis.de/")
skeleton = page.evaluate('document.body.innerHTML')
all I'm getting is
<div class="bg-white h-full" id="app"></div> <script src="/index.38aaab33.js" type="module"></script>
I want to get the elements rendered by the client-side javascript, Thank you.