I have a page that contains the following line of html
<td><span><a onClick="setSummaryClasses(3)">Reality</a></span></td>
Copied from the FF Source panel. I try to click the anchor with
driver.find_element_by_link_text('Reality').click()
and I get a
NoSuchElementException: Message: u'Unable to locate element: {"method":"link text","selector":"Reality"}'
What am I missing?
I have both
driver.set_script_timeout(10)
driver.implicitly_wait(10) # seconds
active.