diaspora/features/step_definitions/custom_web_steps.rb
2010-09-26 12:05:39 -04:00

17 lines
291 B
Ruby

When /^(.*) in the header$/ do |action|
within('header') do
When action
end
end
When /^(.*) in the modal window$/ do |action|
within('#fancybox-wrap') do
When action
end
end
When /^(.*) in the aspect list$/ do |action|
within('#aspect_list') do
When action
end
end