这是我观点的一部分……
<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........'
结束结束
2条答案
按热度按时间wko9yo5t1#
你应该可以点击它
http://www.rubydoc.info/gems/capybara/Capybara/Node/Actions#click_button-instance_method
nhjlsmyf2#
你可以使用水豚的
find
方法。可以根据id属性(在本例中为clickAction
)定位元素。下面是一个示例,说明如何做到这一点:假设您已经设置了您的Capybara会话(例如,使用Selenium或其他驱动程序)
通过id查找输入元素:
对元素执行操作,例如,单击它:
请确保您已正确设置水豚与您选择的驱动程序,这工作。