Skip to content
Extraits de code Groupes Projets
custom_web_steps.rb 291 octets
Newer Older
  • Learn to ignore specific revisions
  • Stephen Caudill's avatar
    Stephen Caudill a validé
    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