I'm using Selenium with Python to navigate through a webpage and want to click on such Element:
<td style="width:75px;cursor:pointer;" onclick="$(this).up().addClassName('grid-visited'); showIndicator(); document.location.href='/masterdata/show/id/1'">591000397</td>
I tried a some stuff which didn't work, e.g.
browser.find_element_by_css_selector("td[onclick*=pointer]").click()
or
browser.find_element_by_link_text("591000397").click()
Error message be like
Message: no such element: Unable to locate element: {"method":"css selector","selector":"td[onclick*=pointer]"}
Thank you for your help