I am trying to get the html code from a web page but I only get like 1/4 of the page showing.
from bs4 import BeautifulSoup
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://www.hltv.org/matches")
print(driver.page_source)
It feels like I have tried everything but still get the same result. It doesn't start at the top. It starts far far down, almost at the end.
Anyone got a clue?