[topic_id]"
> select "Pollution"
you should select by the id attribute, not the name attribute, so:
select "Pollution", :from => "temp_aspect_topic_id"
should work
-- roovo
--
roovoweb.com
___
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users
hack :)
module Webrat
class SeleniumSession
def response_body
sleep 0.2
selenium.get_html_source
end
end
end
I've not experimented with the sleep length I just tried it with 0.2 and it
worked...
-- roovo
--
roovoweb.com
___
rspec