У меня есть приложение Rails, тестирование с RSpec и Capybara
У меня есть следующий тест:
context 'destroy user' do
scenario "should be successful" do
user = User.create(first_name: 'John', last_name: 'Doe', email: 'john.doe@example.com')
visit users_path
click_link 'Destroy'
# expect { click_link 'Destroy' }.to change(User, :count).by(-1)
expect(page).to have_content 'User was successfully destroyed'
end
end
У меня есть следующая ссылка в браузере:
<%= link_to "Destroy", user_path(user), method: :delete, data: { confirm: "Are you sure?" } %>
Я запускаю тест, и тест проходит.Это не должно пройти, так как у меня есть окно предупреждения перед вызовом действия.
Я установил
brew cask install chromedriver
, потому что хотел протестировать JS, но, к сожалению, тестирование не прошло.
rails_helper.rb
# This file is copied to spec/ when you run 'rails generate rspec:install'
require 'spec_helper'
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
# Prevent database truncation if the environment is production
abort("The Rails environment is running in production mode!") if Rails.env.production?
# Add additional requires below this line. Rails is not loaded until this point!
require 'rspec/rails'
require 'capybara/rails'
# Capybara.default_driver = :selenium_chrome ### not working
# require "support/factory_bot"
Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
begin
ActiveRecord::Migration.maintain_test_schema!
rescue ActiveRecord::PendingMigrationError => e
puts e.to_s.strip
exit 1
end
RSpec.configure do |config|
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
config.fixture_path = "#{::Rails.root}/spec/fixtures"
config.use_transactional_fixtures = true
config.infer_spec_type_from_file_location!
# Filter lines from Rails gems in backtraces.
config.filter_rails_from_backtrace!
end
Один разтест не пройден, я бы улучшил тест с помощью:
accept_confirm do
click_link 'Destroy'
end
Я думаю, что моя проблема в том, что я не знаю, где поставить строку:
Capybara.default_driver =: selenium_chrome ### не работает
Где мне создать файл для конфига Capybara?В официальной документации они говорят в lib / capybara.rb
Я пробовал там, и я получаю ошибку:
An error occurred while loading ./spec/models/user_spec.rb.
Failure/Error: require File.expand_path('../../config/environment', __FILE__)
Bundler::GemRequireError:
There was an error while trying to load the gem 'capybara'.
Gem Load Error is: uninitialized constant Capybara
Backtrace for gem load error is:
/Users/albert/.rbenv/versions/2.4.4/lib/ruby/gems/2.4.0/gems/bootsnap-1.3.2/lib/bootsnap/load_path_cache/core_ext/active_support.rb:74:in `block in load_missing_constant'
/Users/albert/.rbenv/versions/2.4.4/lib/ruby/gems/2.4.0/gems/bootsnap-1.3.2/lib/bootsnap/load_path_cache/core_ext/active_support.rb:8:in `without_bootsnap_cache'