这是我观点的一部分......
<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........'
端 端
答案 0 :(得分:0)
您应该可以点击
click_button("Take Survey")
http://www.rubydoc.info/gems/capybara/Capybara/Node/Actions#click_button-instance_method