Skip to content

Instantly share code, notes, and snippets.

@ohammersmith
Created April 20, 2009 19:12
Show Gist options
  • Select an option

  • Save ohammersmith/98685 to your computer and use it in GitHub Desktop.

Select an option

Save ohammersmith/98685 to your computer and use it in GitHub Desktop.
Given /^WH([O]+)AH (.*)$/ do |ohs, actual_step|
ohs.length.times { sleep 10 }
Given actual_step
end
# save and open page before
Given /^SAOP([BA]) (.*)$/ do |before_or_after, actual_step|
save_and_open_page if before_or_after == "B"
Given actual_step
save_and_open_page if before_or_after == "A"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment