This script runs in irb, but not as a standalone script:
require 'watir'
b = Watir::Browser.start "http://www.google.com/"
b.text_field(:name => "q").value = "foo"
b.button(:name => "btnG").click
b.link(:url => /foofighters/).click
The last line is where it fails when run outside of irb (with a 'element not found' error message). But works just fine when run from irb. Could this be a timing problem?
Thanks in advance!