0

尝试将其git push heroku作为Rails 教程的一部分,他们正在使用Capybara 2.1 它会在推送期间出现问题。我收到以下消息:

IMPORTANT! Some of the defaults have changed in `Capybara 2.1`. If you're experiencing failures,
please revert to the old behavior by setting:

Capybara.configure do |config|
  config.match = :one
  config.exact_options = true
  config.ignore_hidden_elements = true
  config.visible_text_only = true
end

文档只是说“设置这些选项”,然后是上面的代码。我是新手,所以我不知道在哪里设置这些选项。我最好的猜测是配置中的许多文件之一,但不确定是哪一个。

4

1 回答 1

1

查看此文档(不确定这是针对哪个版本的 calybara),它声明将配置文件放入 lib/capybara.rb 而不是初始化程序。

http://rubydoc.info/github/jnicklas/capybara/master/Capybara.configure

于 2013-07-24T04:59:05.293 回答