Guest User

Untitled

a guest
Mar 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # features/support/step_matcher.rb
  2.  
  3. require 'webrat'
  4. require 'webrat/core/matchers'
  5. require 'cucumber/webrat/element_locator' # Deprecated in favor of #tableish - remove this line if you don't use #element_at or #table_at
  6.  
  7. # webrat configuration
  8. # note if you need to run different webrat confurations, put them in seperate file and include them using -r, # either with a profile or from the command prompt
  9.  
  10. Webrat.configure do |config|
  11. config.mode = :rails
  12. config.open_error_files = false # Set to true if you want error pages to pop up in the browser
  13. end
Add Comment
Please, Sign In to add comment