In selenium IDE, I need to find the 3rd link whose text is 'XXX'
<tr>
<td>clickAndWait</td>
<td>//a[text()='XXX'][3]</td>
<td></td>
</tr>
error: element not found, any idea?
|
|
|
As answered in my comment on http://stackoverflow.com/questions/2816261 It may be because of a subtlety in XPath where |
|||||
|
|
That expression works in my tests. What error or behavior are you seeing? |
|||||||||
|
|
Use:
The expression:
selects every This is exactly selected by the first XPath expression above. |
|||
|
|