gpt4 book ai didi

ruby-on-rails - 使用 capybara 测试表单 text_field 的存在

转载 作者:行者123 更新时间:2023-12-04 12:52:49 27 4
gpt4 key购买 nike

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

<%= 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

最佳答案

您会使用 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"]' 会选择出现在输入字段的 name confirm 属性。

要设置字段不存在的期望值,您可以在期望值上使用to_not:expect(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

关于ruby-on-rails - 使用 capybara 测试表单 text_field 的存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17880491/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com