A
Axel Etzold
Dear all,
I am trying to automate some javascript website using Firewatir.
I use the following code :
require 'rubygems'
require 'firewatir'
include FireWatir
test_site="http://konjugator.reverso.net/konjugation-englisch.html"
ff=Firefox.new
ff.goto(test_site)
ff.text_fieldname,"ctl00$txtVerb").set("go")
# everything is nice up to here, then I'd like to click the "Konjugieren" # button, which fails
ff.buttontitle,"Konjugieren").click
ff.close
The second-to-last line gives the following error:
/usr/local/lib/ruby/gems/1.8/gems/firewatir-1.6.2/lib/firewatir/MozillaBaseElement.rb:967:in `assert_exists': Unable to locate element, using :title, "Konjugieren" (Watir::Exception::UnknownObjectException)
from /usr/local/lib/ruby/gems/1.8/gems/firewatir-1.6.2/lib/firewatir/MozillaBaseElement.rb:1112:in `click'
from f.rb:11
... yet there's an element with :title 'Konjugieren' in the website that's generated when I enter the information by hand.
What am I missing ?
Thank you very much!
Best regards,
Axel
I am trying to automate some javascript website using Firewatir.
I use the following code :
require 'rubygems'
require 'firewatir'
include FireWatir
test_site="http://konjugator.reverso.net/konjugation-englisch.html"
ff=Firefox.new
ff.goto(test_site)
ff.text_fieldname,"ctl00$txtVerb").set("go")
# everything is nice up to here, then I'd like to click the "Konjugieren" # button, which fails
ff.buttontitle,"Konjugieren").click
ff.close
The second-to-last line gives the following error:
/usr/local/lib/ruby/gems/1.8/gems/firewatir-1.6.2/lib/firewatir/MozillaBaseElement.rb:967:in `assert_exists': Unable to locate element, using :title, "Konjugieren" (Watir::Exception::UnknownObjectException)
from /usr/local/lib/ruby/gems/1.8/gems/firewatir-1.6.2/lib/firewatir/MozillaBaseElement.rb:1112:in `click'
from f.rb:11
... yet there's an element with :title 'Konjugieren' in the website that's generated when I enter the information by hand.
What am I missing ?
Thank you very much!
Best regards,
Axel