Every repository with this icon (
Every repository with this icon (
Browsers and Transactions
When your features are driving a browser using tools like Selenium or Watir you need to turn off database transactions.
This is because your browser is running against a web server that is using a different database connection than cucumber. This is because they run in separate processes. Since they have two different connections, if transactions are on, the web server’s connection can’t see the data modified by the cucumber connection before its transaction is committed. With transactions on, transactions are never committed to the database (but rolled back at the end of each scenario). Therefore, the web server’s connection will never see data from cucumber, and therefore your browser won’t either.
If you’re using Ruby on Rails it’s easy to turn off transactions for a feature or particular scenarios (if you’re on 0.3.103 or above), just use the @no-txn tag, e.g.
@no-txn Feature: Lots of scenarios with transactions off.
or
Feature: ... @no-txn Scenario: One scenario with transactions off.
With Rails you can also turn off transaction globally in your features/support/env.rb:
Cucumber::Rails::World.use_transactional_fixtures = false
Cleaning Your Database
Once you turn transactions off you face a different problem, which is that features will leave data in your database. If you’re using Ruby on Rails, a good tool to deal with this is Ben Mabey’s Database Cleaner gem which you can install with gem install bmabey-database_cleaner --source http://gems.github.com/. (Or just gem install database_cleaner if you are using gemcutter.) You can use this very effectively with the @no-txn tag. Something like the following somewhere in e.g. features/support/db_cleaner.rb should work well:
require 'database_cleaner'
DatabaseCleaner.clean_with :truncation # clean once to ensure clean slate
DatabaseCleaner.strategy = :truncation
Before('@no-txn') do
DatabaseCleaner.start
end
After('@no-txn') do
DatabaseCleaner.clean
end
If you’re not using Rails you can recreate the entire @no-txn bevhaviour using DatabaseCleaner with the following code:






