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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |