Could I have an explanation/solution on why the soup object does not have the h3 element?
import requests
from bs4 import BeautifulSoup
response = requests.get(url="https://www.empireonline.com/movies/features/best-movies-2/")
webpage = response.text
soup = BeautifulSoup(webpage, "html.parser")
main_list = soup.select(selector="h3.jsx-4245974604")
print(soup.prettify())
This is my python code if necessary.