Where/how to include helper methods for capybara integration tests

前端 未结 3 1521
一生所求
一生所求 2021-02-01 16:58

I\"m using capybara for my integration/acceptance tests. They\'re in /spec/requests/ folder. Now I have a few helper methods that I use during acceptance tests. One

3条回答
  •  温柔的废话
    2021-02-01 17:40

    Put your helper to the spec/support folder and do something like this:

    spec/support/:

    module YourHelper
      def register_user(user)
        visit home_page
        fill_in 'user_name', :with => user.username
        fill_in 'password', :with => user.password
        click_button 'sign_up_button'
      end
    end
    
    RSpec.configure do |config|
      config.include YourHelper, :type => :request
    end
    

提交回复
热议问题