使用capybara测试表单text_field存在

时间:2013-07-26 11:46:33

标签: ruby-on-rails forms capybara

我有以下表格,我想检查文本字段是否存在。我怎样才能做到这一点 ?

<%= form_for(ownership, remote: true) do |f| %>
  <div>
    <%= f.text_field :confirm, value: nil %>
    <%= f.hidden_field :start_date, value: Time.now %>
  </div>
  <%= f.submit t('button.ownership.take.confirmation'), class: "btn btn-small"%>
<% end %>

这是我的测试:

describe "for not confirmed ownership" do

  before do
    FactoryGirl.create(:agreed_ownership, user: current_user, product: product)
    be_signed_in_as(current_user)
    visit current_page
  end

  # it { should_not have_text_field(confirm) }
  it { should_not have_button(t('button.ownership.take.confirmation')) }
end

1 个答案:

答案 0 :(得分:4)

您使用has_css?期望:

it "should have the confirm input field" do
  visit current_page

  expect(page).to have_css('input[type="text"]')
end

您也可以使用其他jQuery样式选择器来过滤输入字段中的其他属性。例如,'input[type="text"][name*="confirm"]'会选择出现在输入字段的confirm属性中的name

要设置期望字段,您可以根据预期使用to_notexpect(page).to_not have_css('input[type="text"]')

奖金:这是较旧的should式语法:

it "should have the confirm input field" do
  visit current_page

  page.should have_css('input[type="text"]')
end

it "shouldn't have the confirm input field" do
  visit current_page

  page.should_not have_css('input[type="text"]')
end