We have a issue on our e-commerce site where users occasionally hit "checkout" twice and have their card charged twice.

It's a common enough bug and easy to fix, but I'd like to test the solution in our capybara setup. Once I've called click_button('checkout'), is it possible for me to pretend I'm a user hitting the browsers back button and then call click_button('checkout') a second time?

link|improve this question

57% accept rate
feedback

3 Answers

You may want to try:

When(/^I go back$/) do
  page.evaluate_script('window.history.back()')
end

This will require running the senario in a javascript capable driver (selenium/celerity/akephalos)

link|improve this answer
feedback

I've used this method in Webrat. I'm sure something similar for Capybara would work.

When(/^I go back$/) do
  visit request.env['HTTP_REFERER']
end

Side note: the "redirect_to :back" method didn't work for me for whatever reason.

link|improve this answer
except that will reload the previous page (unlike the browser back button), I'm hoping to just access the source again. – James Healy Oct 9 '10 at 7:49
feedback

Thanks! This question and answer helped me a lot!

Just to add to @Jake Mallory's answer, selenium is now part of capybara and you can fairly easily run javascript in the test by adding :js => true (and possibly a couple more tweaks) as described in these two tutorials:

http://www.opinionatedprogrammer.com/2011/02/capybara-and-selenium-with-rspec-and-rails-3/ http://railscasts.com/episodes/257-request-specs-and-capybara?view=asciicast

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.