Hey, I'm trying to hit a link in a table-row that contains multiple links. This pattern is used throughout the table.
This works:
browser.wait_for(:element => "css=tr:nth-child(1) li:nth-child(2) > a")
This does not:
browser.click "css=tr:nth-child(1) li:nth-child(2) > a"
Any ideas why this might be? I'm using the selenium-client rubygem.