如何使用水豚来定位<input type =“image”.... =“”/>?

时间:2017-09-28 19:42:52

标签: ruby-on-rails ruby testing capybara capybara-webkit

这是我观点的一部分......

  <input type="image" id="clickAction" src="<%= @bookSurveyImage %>" alt="Take Survey"%>"/>
<% end %>

</body>
</html>

我希望能够定位该输入,以重定向到另一个网址。我怎样才能做到这一点 ?请帮忙

以下是我尝试过的一些事情。

describe "landings", :type => :feature do
it "index: get all params" do
visit '/sample_page?'

expect(page).to have_no_content 'Sample text'
expect(page).to have_no_content 'Example'
expect(page).to have_no_content("Some Content")

expect(page).to have_css("img", :maximum => 1)

# expect(page).to have_css("input", :id => "sampleID")
# get :survey_link
# expect(response).to render_template(:survey_link) #
# find("#clickAction").click
# input[@type='image']
# click_input

# 

# visit 'https://url........'

端 端

1 个答案:

答案 0 :(得分:0)