I am trying to scrape user reviews off an IMDB page.
Specifically this one: https://www.imdb.com/title/tt0993846/reviews?ref_=tt_ql_3
Reviews = driver.find_elements_by_class_name('content')
Print(Reviews[0].text)
The code above gets me the first review just fine.
However, the 5th review titled "Good or Bad depending on what you want..." is a spoiler review and this method does not seem to grab the text.
I have tried using:
driver.find_elements_by_class_name('text show-more__control clickable')
But this doesn't seem to do the trick