0

我被要求在 Rails 应用程序上提供帮助。我正在经历一些失败的 rpsec 测试并让它们通过。我有一个我正在用头撞墙。我们使用的是 Rails 3.2.13 和 Ruby 2.0 注意:我完全是 rspec 的一个 nube。

我有一个 id 为 vet-as-faculty 的表格。测试正在寻找这个而不是找到它。我得到错误:

Capybara::ElementNotFound:
   Unable to find css "form#vet-as-faculty

我在测试中的其他表单元素上也遇到了类似的错误,但是测试在这一点上或此时失败了。

我知道这“通常”意味着表单上的标记不正确或测试中的某些内容拼写错误(我发现了其中的一些)。但是这个我就是拿不到。我在谷歌上搜索了这个错误并找到了一些东西,但似乎没有任何东西可以帮助我解决这个问题。我希望你们那里的大师会看到一些对我来说很简单的东西。

表单/视图(部分):

 <%= form_for @profile, :url => { :action => :vet_as_faculty }, :html => { :id => "vet-as-faculty" } do |f| %>
  <fieldset class="row1"><legend>Vet Me As Faculty</legend>
    <div class="form-pair" id="faculty-url">
    <div class="form-item">
      <label>Faculty URL</label>
    </div>
  <fieldset class="row2">
    <div class="form-submit" id="save-faculty">
      <%= f.submit "Send for Review" %>
    </div>
  </fieldset>
<% end %>

查看源代码显示为:

<form accept-charset="UTF-8" action="/research/chr/casestudies/profile/vet_as_faculty" class="edit_user" id="vet-as-faculty" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="_method" type="hidden" value="put" /><input name="authenticity_token" type="hidden" value="FZtjli8HaGD3koUvSFAYR2Gy+waL8KDWflMNUo4tXXw=" /></div>
  <fieldset class="row1"><legend>Vet Me As Faculty</legend>
    <div class="form-pair" id="faculty-url">
      <div class="form-item">
        <label>Faculty URL</label>
      </div>
      <div class="form-value">
        <input id="user_faculty_url" name="user[faculty_url]" size="30" type="text" />
      </div>
  </fieldset>

  <fieldset class="row2">
    <div class="form-submit" id="save-faculty">
      <input name="commit" type="submit" value="Send for Review" />
    </div>
  </fieldset>
...

因此,我将 for id 视为 'id="vet-as-faculty"'。但是,测试没有看到这一点。

测试代码:

context "within the faculty vetting block" do
    it "has the necessary form fields" do
      within "form#vet-as-faculty" do 
        expect(page).to have_css("input#user_faculty_url")
        expect(page).to have_css("input#save-faculty")
      end
    end
 end

这一测试的错误输出:

3) Edit Profile View within the faculty vetting block has the necessary form fields
   Failure/Error: within "form#vet-as-faculty" do
   Capybara::ElementNotFound:
     Unable to find css "form#vet-as-faculty"
   # ./spec/features/edit_profile_view_spec.rb:48:in `block (3 levels) in <top (required)>'

我试图在测试中添加更多的向下钻取类型 css

within "#page #content form#vet-as-faculty" do

表单在 div#content 内,内容在 div#page 内。这也无济于事。

有什么想法吗?感谢您阅读本文。

4

1 回答 1

1

最好的猜测是您实际上并没有导航到您的表单所在的页面

before { visit new_my_model_path }

作为更一般的建议。避免编写只断言标记/css 的测试。专注于您需要此表单完成的行为,您的测试将更有价值。

于 2013-05-29T12:36:51.407 回答