I am trying to scrape specific elements of the internship page below using requests-html. I specifiy that first=True but when I print the text out it prints everything on the page starting with the element I selected instead of returning just that element.
`from requests_html import HTMLSession
url = "https://jobs.disneycareers.com/job/orlando/wdi-estimating-internship-orlando-fall-
2022/391/30101898544"
s = HTMLSession()
r = s.get(url)
r.html.render(sleep=1)
internship_title = r.html.find("h1#job-title-scrape", first=True)
print(internship_title.text)`