遇到capybara命令时,Rspec返回一个未定义的方法错误

时间:2013-10-30 16:53:53

标签: ruby-on-rails rspec capybara rspec-rails

使用rspec-rails 2.13(我现在在我的gemfile中指定了2.14,但是当我安装rspec时我使用的是2.13)和capybara 2.0.2

我正在尝试使用capybara和Rspec进行测试,看起来像这样:

    require 'spec_helper'
include Warden::Test::Helpers
Warden.test_mode!

describe "add all products to regimen" do

    before(:each) do
   trainer = FactoryGirl.create(:trainer)
   client = FactoryGirl.create(:client, :trainer_id => trainer.id)
   login_as(trainer,:scope => :user)

  end

    it "changes all button to remove", :js => true do
   click 'Build Regimen'
   click_button "Click to add all products to regimen"
     page.should have_no_selector(".add-variation")
  end

    it "adds order details for each product", :js => true do
     click 'Build Regimen'
     click_button "Click to add all products to regimen"
     number_of_products = page.all('.remove-variation')
     page.should have_css("div#variation-details fieldset", :count => number_of_products.length)
    end

  end

点击“Build Regimen”后会返回此错误

←[31mundefined method `click' for #<RSpec::Core::ExampleGroup::Nested_1:0
x31991a0>←[0m

*注意,我的测试文件位于spec / features

如果有帮助,这里也是我的spec_helper.rb:

# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'rspec/autorun'
require 'capybara/rspec'
require 'database_cleaner'
# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}

RSpec.configure do |config|
  config.include SpecTestHelper

  # ## Mock Framework
  #
  # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
  #
  # config.mock_with :mocha
  # config.mock_with :flexmock
  # config.mock_with :rr

  # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
  config.fixture_path = "#{::Rails.root}/spec/fixtures"

  # If you're not using ActiveRecord, or you'd prefer not to run each of your
  # examples within a transaction, remove the following line or assign false
  # instead of true.
  config.use_transactional_fixtures = false
  DatabaseCleaner.strategy = :truncation

  # If true, the base class of anonymous controllers will be inferred
  # automatically. This will be the default behavior in future versions of
  # rspec-rails.
  config.infer_base_class_for_anonymous_controllers = false

  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = "random"
end

2 个答案:

答案 0 :(得分:0)

变化:

require 'capybara/rspec'

为:

require 'capybara'

答案 1 :(得分:0)

尝试将您的点击放在前面的块中,就像这样

describe "changes all button to remove", :js => true do
   before do
       click 'Build Regimen'
       click_button "Click to add all products to regimen"
   end
   it { page.should have_no_selector(".add-variation") }
end

describe "adds order details for each product", :js => true do
     before
        click 'Build Regimen'
        click_button "Click to add all products to regimen"
        @number_of_products = page.all('.remove-variation')
     end
     it { page.should have_css("div#variation-details fieldset", :count => @number_of_products.length) }
end