In the website i visit there are 7 links of the following structure:
<tr>
<td>
<a href="some link i will need to visit" title="some title"> some text... Episode ....
</a>
</td>
<td> some date </td>
</tr>
Now i use the following code to fetch the episodes and put them in a list
chromedriver = "C:/.../chromedriver.exe"
driver = webdriver.Chrome(chromedriver)
driver.get("link containing the content")
episodes = driver.find_elements_by_partial_link_text('Episode')
print "episodes found: ", len(episodes)
This always prints episodes found: 0
. I've tried using a piece from the beginning of the hyperlink text, but it still doesn't work. Any help would be appreciated.