Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在使用 rspec 和 webrat 并决定添加黄瓜进行高级测试。
在用 capybara 安装 cucumber 后,由于某种原因 rspec 也转而使用它。
有没有办法告诉 rspec 继续使用 webrat ?
确保您的 Gemfile 中同时包含 webrat 和 capybara,并将以下内容添加到您的 /spec/spec_helper.rb 中:
require "webrat" Webrat.configure do |config| config.mode = :rails end
我刚刚切换到 capybara,但我的视图规范停止工作,因为 capybara 没有“have_selector”。猜猜你有类似的问题,好吧,现在它(希望)解决了。