5

我使用水豚编写了一些测试,以使用 poltergeist 和 phantomjs 作为 javascript 驱动程序进行请求测试。

以下填写登录表单的步骤在没有 js 的情况下效果很好:

it "signs in" do
    visit new_user_session_path
    fill_in "Email", with: user
    fill_in "Password", with: password||"foobar"
    click_button "Login"
end

如果我用 js 定义我的测试,it "signs in", js: true do我的测试将失败并出现错误:

Capybara::ElementNotFound: Unable to find field "Email"

登录表单本身是使用 simple_form 作为表单生成器和前端的引导程序构建的。这些字段没有标签。搜索文本仅包含在占位符属性中。

= simple_form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f|
  = f.input :email, :placeholder => User.human_attribute_name(:email), :label => false, :input_html => {:class => 'input-xlarge'}
  = f.input :password, :placeholder => User.human_attribute_name(:password), :label => false, :input_html => {:class => 'input-xlarge'}
  %div
    = f.button :submit, "Login", :class => 'btn btn-large btn-primary'

此代码生成以下 html 代码

<form accept-charset="UTF-8" action="/users/login" class="simple_form new_user" id="new_user" method="post" novalidate="novalidate">
  <div style="margin:0;padding:0;display:inline">
    <input name="utf8" type="hidden" value="✓">
  </div>
  <div class="control-group email required user_email">
    <div class="controls">
      <input class="string email required input-xlarge" id="user_email" name="user[email]" placeholder="Email" size="50" type="email" value="">
    </div>
  </div>
  <div class="control-group password required user_password">
    <div class="controls">
      <input class="password required input-xlarge" id="user_password" name="user[password]" placeholder="Password" size="50" type="password">
    </div>
  </div>
  <div>
    <input class="btn btn btn-large btn-primary" name="commit" type="submit" value="Login">
  </div>
</form>

即使激活了js,您是否有任何想法如何确保找到字段?

4

2 回答 2

3

我不知道你的 Webrat 测试是如何通过的。根据我的经验,如果没有匹配的标签或 ID,Capybara 找不到“电子邮件”。

在你的情况下,由于你不使用标签,我建议你找到带有 id 的字段

fill_in "user_email", with user.email 
# user_email is the id created by simple_form in general case. Verify yours.
# Don't need "#" before id. 
于 2013-06-06T18:04:52.393 回答
1

在 :js => true 时截屏visit new_user_session_path并验证 html 是否正在呈现。

visit new_user_session_path
save_and_open_page

如果没有呈现任何内容,只是一个空的 html 文档,请确保在您的 spec_helper.rb

config.use_transactional_fixtures = false

也尝试使用 DatabaseCleaner gem。

RSpec.configure do |config|
  config.use_transactional_fixtures = false

  config.before(:suite) do
    DatabaseCleaner.clean_with :truncation
  end

  config.before(:each) do
    if example.metadata[:js]
      DatabaseCleaner.strategy = :truncation
    else
      DatabaseCleaner.strategy = :transaction
    end
    DatabaseCleaner.start
  end

  config.after(:each) do
    DatabaseCleaner.clean
  end
end
于 2013-10-26T19:24:17.163 回答