diaspora/features/step_definitions/search_steps.rb
2015-03-16 22:07:51 +01:00

9 lines
224 B
Ruby

When /^I enter "([^"]*)" in the search input$/ do |search_term|
fill_in "q", :with => search_term
end
When /^I click on the first search result$/ do
within(".ac_results") do
find("li", match: :first).click
end
end