Im trying to scrape through a movie website to get the src of the movie but when i run the code im getting no output at all
from selenium import webdriver
from bs4 import BeautifulSoup
from selenium.webdriver.chrome.service import Service as ChromeService
driver = webdriver.Chrome()
driver.get("https://ww6.solarmovie.to/movie/seal-team-season-1-22006.html")
pageSrc = driver.page_source
soup = BeautifulSoup(pageSrc, 'html.parser')
searchResult = soup.find_all("div", class_="ratio ratio-16x9")
print(searchResult)