http://www.perlmonks.org?node_id=1011284


in reply to How to click on 2nd link (both have same Xpath)

You can have indices in XPath expressions. I suggest you use them. See the "predicates" in the XPath specification.

As an alternative, you can do the same in Perl, by first finding all relevant links, storing them in an array and then passing the second entry in the array as an argument to ->click().

Replies are listed 'Best First'.
Re^2: How to click on 2nd link (both have same Xpath)
by Anonymous Monk on Jan 02, 2013 at 15:05 UTC
    Thx Corion... :)