OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/features/step_definitions/search_steps.rb

13 lines
335 B

When /^I search globally for "([^"]*)"$/ do |query|
steps %Q{
And I fill in "stuff" for "q"
And I press the "return" key on element "#q"
}
end
When /^I search for "([^"]*)" after having searched$/ do |query|
steps %Q{
And I fill in "stuff" for "q" within "#content"
And I press "Submit" within "#content"
}
end