I'm writing cucumber tests to test user 'Remember me' type functionality, and in order to do that in real life the user would close their browser, reopen their browser, and come back to the site.

My test so far looks like this:

Scenario: 'Remember me' checked
  Given I have checked "Remember me"
  And I am logged in as "test@test.com"
  When I close and re-open my browser
  And I come back to the dashboard
  Then I should be on the dashboard

However I don't know what to fill in for the 'When I close and re-open the browser' step definition.

Does anyone know how I would do this (or if this isn't what I should be doing, how I should be testing it?)

link|improve this question

60% accept rate
Did you find answer for you question? we are trying to test localStorage usage and our offline application. sometimes we need to reopen browser or open in another browser(it could be the same browser but with clean localstorage data and empty cookies). we have already created fork of another fork(html5 support) and merged with capybara-webkit(0.7.2) with localStorage support. But now we have troubles with reopen browser steps. – oivoodoo Feb 8 at 14:51
Did you find answer to your question? – p.matsinopoulos yesterday
feedback

3 Answers

Perhaps create a second Capybara session? http://rubydoc.info/github/jnicklas/capybara/master/Capybara/Session

link|improve this answer
feedback

You can just clear the cookies.

When /^I clear cookies$/ do
  browser = Capybara.current_session.driver.browser
  browser.manage.delete_all_cookies
end
link|improve this answer
I think the scenarios is support to verifying the the cookie is set and read correctly across different sessions, so clearing the cookies would break the test. – Andy Waite Sep 12 '11 at 14:48
feedback

I use Show me the cookies.

Add to bundle with gem 'show_me_the_cookies' and then add World(ShowMeTheCookies) in your features/support/env.rb

Then just define a step:

When /^I reopen the browser$/ do
  expire_cookies
  visit [ current_path, page.driver.request.env['QUERY_STRING'] ].reject(&:blank?).join('?')
end
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.