I'm just starting out with ruby and firewatir, so I'm trying to find out if it's just me, or if something is broken with firewatir.
I'm trying to select an element using xpath.
This works:
browser.link(:id => "about").exists #true
This fails
browser.link(:xpath => "//*[@id='about']").exists #false
However, this works as well:
browser.element_by_xpath("//*[@id='about']").exists #true
This is on firewatir 1.7.1
$ ruby -v #ruby 1.9.2p136 (2010-12-25 revision 30365) [i686-linux]