Apr 24, 2010

Ruby On Rails and Selenium wait_for_page

I'm moving my current project's cucumber+webrat testing over to cucumber+webrat+selenium. The biggest issue as I expected was timing problems but a fairly liberal sprinkingling of wait_for_page commands through the relevant methods in web_steps.rb file seems to have fixed most of the issues.

Given /^(?:|I )am on (.+)$/ do |page_name|
visit path_to(page_name)
selenium.wait_for_page_to_load(5)
end
When /^(?:|I )press "([^\"]*)"$/ do |button|
click_button(button)
selenium.wait_for_page_to_load(5)
end
When /^(?:|I )follow "([^\"]*)"$/ do |link|
click_link(link)
selenium.wait_for_page_to_load(5)
end
view raw web_stebs.rb hosted with ❤ by GitHub

Apr 11, 2010

User Centric Design

Everyone fails if the cat's not satisfied!