Possible Duplicate:
if you know xpath then please help?
hi, so here is the html code
<html>
<body>
<table>
<tr>
Test
</tr>
<tr>
<td>
<a href = "google.com">
Google
</a>
</td>
</tr>
<tr>
<td> test1</td>
<td>
<a href = "yahoo.com"> Yahoo!</a>
</td>
</tr>
</tr>
</table>
</body>
</html>
so now I want the text Google and Yahoo!
how can I get that
here is what I wrote
table[1]/tr[1]/td[2]
I dont't know what is happening but nothing is showing up...
thanks