Capybara ::下拉集合上的ElementNotFound选择使用Rspec

时间:2012-12-13 17:17:25

标签: ruby-on-rails-3 rspec capybara

我一直在撞墙,试图找出为什么这个测试没有通过Rspec。它适用于浏览器。

我有一个属于Grade对象的课程表单。在“课程”表单中,有一个允许用户选择成绩的选择框:

<%= form_for [current_user, @course] do |course| %>
...
<%= course.label :grade_id, "What age are the students?" %>
<%= course.collection_select(:grade_id, Grade.all, :id, :grade_level, options ={:prompt => "Select Grade"})  %>

我在Rspec的测试看起来像这样:

describe "A workign form" do
  before do
    sign_in_via_form #signs the user in
    visit new_user_course_path(@user) #references @user, defined in Helper
  end
let(:course){@user.courses}

  context "With valid information" do
    it "adds a course" do
      expect {
        fill_in 'course_name', with:'Course Name'
        select 'Fall', from: 'course_course_semester'
        select '2012', from: 'course_course_year'
        select 'Grade 5', from: 'course_grade_id'
        fill_in 'course_summary', with: 'Perfunctory Summary'
        fill_in 'course_objectives_attributes_0_objective', with: "an objective"
        click_button "submit"
     }.to change(course, :count).by(1)
    end
  end
...#other tests
end #describe block

我的表单中生成的HTML如下所示:

<label for="course_grade_id">What age are the students?</label>
<select id="course_grade_id" name="course[grade_id]"><option value="">Select Grade</option>
    <option value="1">Kindergarten</option>
    <option value="2">Grade 1</option>
    <option value="3">Grade 2</option>
    <option value="4">Grade 3</option>
    <option value="5">Grade 4</option>
    <option value="6">Grade 5</option>
    <option value="7">Grade 6</option>
    <option value="8">Grade 7</option>
    <option value="9">Grade 8</option>
    <option value="10">Grade 9</option>
    <option value="11">Grade 10</option>
    <option value="12">Grade 11</option>
    <option value="13">Grade 12</option>
    <option value="14">High School</option>
</select>

如果还需要其他代码,请告诉我。我很乐意提供它。我的其他选择框正在工作,但它们也是Arrays驱动内容的模型的一部分。但是,在这种情况下,相关模型正在推动内容。我不确定这是否重要,如果确实如此。

1 个答案:

答案 0 :(得分:3)

下拉列表的数据来自数据库。 Rails使用单独的DB进行测试,默认情况下其表为空。所以你需要填充成绩表,以便在下拉列表中有一些选项。

使用FactoryGirl,它看起来像

FactoryGirl.define do
  factory :grade do
    sequence(:grade_level) { |n| "Grade #{n}" }
  end
end

和测试

describe "A workign form" do
  before do
    sign_in_via_form #signs the user in
    FactoryGirl.create_list(:grade, 14) # fill the grades table before visit the page
    visit new_user_course_path(@user) #references @user, defined in Helper
  end
  ...