I would recommend against using xpaths if you can help it. The engine
in IE is one of the fastest out there, but it doesn't go as fast as a
native XPath implementation would, and the different implementations
on different browsers could cause headaches. I do understand that
sometimes xpath is the only way to get to a node, so it's something
that might be used, but in this case, you could do the same thing
using: By.linkText("Text")
Regards,
Simon