I currently have the following:
from selenium import webdriver
d = webdriver.Chrome()
# request the url and get the page contents
title = result.find("span", {"class": "episode"}).find("a").text
However, the 'text' that is returned to me is:
# Note the truncation on the word "envol"
<td class="title"><a href="/title/tt1844708/">La grande envol</a></td>
However, when I download the page source, it shows the following:
<td class="title"><a href="/title/tt1844708/">La grande envolée</a>
<span class="year_type">(1927)</span><br />
</td>
Why is the text truncated in the webdriver response? How would I ensure it gives me the full utf-8 encoded text?