I have this tag in my HTML code
<td> Open </td>
and another one:
<td> Prévu </td>
I use (soup is the HTML page)
soup.find(text='Open')
and it is found but when it comes to use
soup.find(text='Prévu')
I get no result (None object).
The goal of finding these two keywords is not the search itself but to see whether a specific element in a table has value Open and Prévu (the table is misformatted, so I can't really rely on a fixed structure to match a specific cell).
I guess the problem comes from the accented letter. I also tried with
è
é
but same result.
Any clue? Thanks in advance