2013-07-31 84 views
3

我们正试图将水豚引入我们的rspec示例中,并且没有太多运气。我不知道这是否是confusion between capybara and rails integration testing的一部分,但...为什么水豚不能找到表单元素?

这里的RSpec的例子:

require 'spec_helper' 

describe "planning a trip", :type => :feature do 
    before :each do 
    FactoryGirl.create(:user) 
    end 

    it "creates a new trip" do 
    visit '/trips/new' 
    save_and_open_page 
    within("#new_trip") do 
     fill_in '#trip_from_place_nongeocoded_address', :with => '730 w peachtree st, atlanta, ga' 
     fill_in '#trip_to_place_nongeocoded_address', :with => 'georgia state capitol, atlanta, ga' 
    end 
    click_link 'Plan it' 
    expect(page).to have_content 'Success' 
    end 
end 

和这里的HTML的相关部分,从水豚的save_and_open_page:

<form accept-charset="UTF-8" action="/trips" class= 
    "simple_form form-horizontal" id="new_trip" method="post" 
    novalidate="novalidate"> 

    <div class= 
    "control-group string required trip_from_place_nongeocoded_address"> 
    <label class="string required control-label" for= 
    "trip_from_place_nongeocoded_address"><abbr title= 
    "required">*</abbr> From</label> 

     <div class="controls"> 
     <input class="string required" id= 
     "trip_from_place_nongeocoded_address" name= 
     "trip[from_place][nongeocoded_address]" placeholder= 
     "Enter address" size="50" type="text"> 
     </div> 
    </div> 
[...etc...] 

但在运行RSpec的例子失败:

1) planning a trip creates a new trip 
    Failure/Error: fill_in '#trip_from_place_nongeocoded_address', :with => '730 w peachtree st, atlanta, ga' 
    Capybara::ElementNotFound: 
     Unable to find field "#trip_from_place_nongeocoded_address" 
    # ./spec/features/plan_a_trip_spec.rb:12:in `block (3 levels) in <top (required)>' 
    # ./spec/features/plan_a_trip_spec.rb:11:in `block (2 levels) in <top (required)>' 

建议?

+0

我不知道为什么水豚不能找到那个领域,但你应该能够告诉水豚你的标签的名字,而不是o f选择器到DOM元素。 'fill_in'From',:with =>'...''。水豚会找到那些作为他们标签文本的字段,看起来您已经设置好了。我更喜欢这也是因为它反映了用户会做什么。 –

+0

但是如果你有本地化?你认为默认的语言环境? – denishaskin

回答

1

据我所知,如果你的输入有:

id="trip_from_place_nongeocoded_address" 

然后,你需要:

fill_in 'trip_from_place_nongeocoded_address' 

...没有#

Capybara: How do I fill in a input field by its ID

+0

是的,我没有仔细阅读API文档。我认为这是一个CSS或xpath定位器。不是。 – denishaskin