While writing a Selenium script, I encountered an issue with locating a link in a table on an HTML page. Using "css=table tr:nth-child(2) td:nth-child(3) a" did not work and resulted in a "[error] locator not found" message in Selenium IDE.
However, when I used "css=table tr:nth-child(2)", it successfully located the row. I am now wondering if my CSS locator was incorrect. I believed that adding "td:nth-child(3) a" should have worked to find the link within the table data, but it did not.
Edit: I am currently working with Firefox 3.0.15