12

我使用 rspec,水豚。我从 http 标头设置语言环境,如下所示

  before_filter :set_locale

  def extract_locale_from_accept_language_header
    request.env['HTTP_ACCEPT_LANGUAGE'].scan(/^[a-z]{2}/).first
  end

  def set_locale
    return I18n.locale = current_user.locale if user_signed_in?
    I18n.locale = extract_locale_from_accept_language_header || I18n.default_locale
  end

当我运行我的功能测试时,我收到错误“ scanNilClass 的未定义方法”。显然水豚不设置http标头。

如何为我的所有功能设置 http 标头或通过其他方式避免这种情况?

4

2 回答 2

14

根据您的浏览器驱动程序,您可以像这样全局设置标头:

  Capybara.current_session.driver.headers = { 'Accept-Language' => 'de' }
  Capybara.current_session.driver.header('Accept-Language', 'de')
于 2013-07-06T21:16:02.427 回答
9

您可以像这样设置标题:

RSpec.configure do |config|
  config.before(:each) do
    page.driver.header 'Accept-Language', 'de'
  end
end

来源:https ://github.com/thoughtbot/capybara-webkit#non-standard-driver-methods

标头:为后续请求设置给定的 HTTP 标头

page.driver.header '推荐人', ' https://www.thoughtbot.com '

于 2015-06-04T13:15:32.790 回答