I'm trying to scrape this job site for a specific job title but I keep getting this error message.
Traceback (most recent call last):
File "/home/malachi/Documents/python_projects/Practice/Jobsearcher.py", line 7, in <module>
print(results.prettify())
AttributeError: 'NoneType' object has no attribute 'prettify'
I've run this same code on other websites with different class names and I got results but when I run it on the website I need it says that the class doesn't exist
from bs4 import BeautifulSoup
page =requests.get("https://careers.united.com/job-search-results/")
soup = BeautifulSoup(page.content, "html.parser")
results = soup.find(class_ = "jobTitle")
print(results)
print(results.prettify())```