Re: [rspec-users] Select box with Webrat

2009-04-22 Thread roovo
[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

Re: [rspec-users] problem using cucumber with selenium

2009-04-20 Thread roovo
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