Skip to content
Extraits de code Groupes Projets
custom_web_steps.rb 6,04 ko
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
    
    
    And /^I expand the publisher$/ do
      page.execute_script('
        $("#publisher").removeClass("closed");
        $("#publisher").find("textarea").focus();
        ')
    end
    
    
    When /^I press the aspect dropdown$/ do
      find('.dropdown .button').click
    end
    
    And /^I toggle the aspect "([^"]*)"$/ do |aspect_name|
      aspect = @me.aspects.where(:name => aspect_name).first
    
      find(".dropdown li[data-aspect_id='#{aspect.id}']").click
    
    Then /^the publisher should be collapsed$/ do
    	find("#publisher")["class"].should include("closed")
    end
    
    Then /^the publisher should be expanded$/ do
    	find("#publisher")["class"].should_not include("closed")
    end
    
    
    When /^I append "([^"]*)" to the publisher$/ do |stuff|
    
      # Wait for the publisher to appear and all the elements to lay out
      wait_until { evaluate_script("$('#status_message_fake_text').focus().length == 1") }
    
      # Write to the placeholder field and trigger a keyup to start the copy
      page.execute_script <<-JS
        $('#status_message_fake_text').val($('#status_message_fake_text').val() + '#{stuff}');
        $('#status_message_fake_text').keyup();
      JS
    
      # Wait until the text appears in the placeholder
      wait_until do
        evaluate_script("$('#status_message_fake_text').val().match(/#{stuff}/) != null")
      end
    
      # WAIT FOR IT!...
    
      # Wait until the text copy is finished
      wait_until do
        evaluate_script <<-JS
          $('#status_message_text').val() && ($('#status_message_text').val().match(/#{stuff}/) != null)
        JS
      end
    
    And /^I hover over the "([^"]+)"$/ do |element|
    
      page.execute_script("$(\"#{element}\").first().addClass('hover')")
    
    When /^I click to delete the first post$/ do
    
      page.execute_script('$(".stream_element").first().find(".stream_element_delete").first().click()')
    
    When /^I click to delete the first comment$/ do
      page.execute_script('$(".comment.posted").first().find(".comment_delete").click()')
    
    When /^I click to delete the first uploaded photo$/ do
      page.execute_script('$("#photodropzone").find(".x").first().click()')
    end
    
    
    And /^I click "([^"]*)" button$/ do |arg1|
      page.execute_script('$(".button:contains('+arg1+')").click()')
    end
    
    
    And /^I click on selector "([^"]*)"$/ do |selector|
      page.execute_script("$('#{selector}').click();")
    end
    
    
    Raphael's avatar
    Raphael a validé
    And /^I preemptively confirm the alert$/ do
    
      page.evaluate_script("window.confirm = function() { return true; }")
    
    And /^I preemptively reject the alert$/ do
    
      page.evaluate_script("window.confirm = function() { return false; }")
    
    Stephen Caudill's avatar
    Stephen Caudill a validé
    When /^(.*) in the modal window$/ do |action|
    
    danielvincent's avatar
    danielvincent a validé
      within('#facebox') do
    
    Stephen Caudill's avatar
    Stephen Caudill a validé
        When action
      end
    end
    
    
    When /^I press the first "([^"]*)"(?: within "([^"]*)")?$/ do |link_selector, within_selector|
      with_scope(within_selector) do
    
        find(:css, link_selector).click
    
    When /^I press the ([\d])(?:nd|rd|st|th) "([^\"]*)"(?: within "([^\"]*)")?$/ do |number, link_selector, within_selector|
    
      with_scope(within_selector) do
    
        find(:css, link_selector+":nth-child(#{number})").click
    
    Michael Nutt's avatar
    Michael Nutt a validé
    Then /^(?:|I )should see a "([^\"]*)"(?: within "([^\"]*)")?$/ do |selector, scope_selector|
    
      with_scope(scope_selector) do
        page.has_css?(selector).should be_true
      end
    end
    
    
    Then /^(?:|I )should not see a "([^\"]*)"(?: within "([^\"]*)")?$/ do |selector, scope_selector|
      with_scope(scope_selector) do
    
        if page.has_css?(selector)
          find(:css, selector).visible?.should be_false
        else
          page.has_css?(selector).should be_false
        end
    
    When /^I wait for the ajax to finish$/ do
    
      wait_until(30) { evaluate_script("$.active") == 0 }
    
    end
    
    When /^I have turned off jQuery effects$/ do
      evaluate_script("$.fx.off = true")
    
    Michael Nutt's avatar
    Michael Nutt a validé
    When /^I attach the file "([^\"]*)" to hidden element "([^\"]*)"(?: within "([^\"]*)")?$/ do |path, field, selector|
      page.execute_script <<-JS
        $("#{selector || 'body'}").find("input[name=#{field}]").css({opacity: 1});
      JS
    
      if selector
        When "I attach the file \"#{Rails.root.join(path).to_s}\" to \"#{field}\" within \"#{selector}\""
      else
        When "I attach the file \"#{Rails.root.join(path).to_s}\" to \"#{field}\""
      end
    
      page.execute_script <<-JS
        $("#{selector || 'body'}").find("input[name=#{field}]").css({opacity: 0});
      JS
    end
    
    
    Then /^I should get download alert$/ do
      page.evaluate_script("window.alert = function() { return true; }")
    end
    
    
    When /^I search for "([^\"]*)"$/ do |search_term|
      When "I fill in \"q\" with \"#{search_term}\""
      page.execute_script <<-JS
        var e = jQuery.Event("keypress");
        e.keyCode = 13;
        $("#q").trigger(e);
    
    Then /^the "([^"]*)" field(?: within "([^"]*)")? should be filled with "([^"]*)"$/ do |field, selector, value|
      with_scope(selector) do
        field = find_field(field)
        field_value = (field.tag_name == 'textarea') ? field.text : field.value
        field_value = field_value.first if field_value.is_a? Array
        if field_value.respond_to? :should
          field_value.should == value
        else
          assert_equal(value, field_value)
        end
      end
    end
    
    
    Then /^I should see (\d+) posts$/ do |n_posts|
    
      wait_until(30) { all("#main_stream .stream_element").length == n_posts.to_i }
    
    Then /^I should see (\d+) contacts$/ do |n_posts|
    
      wait_until(30) { all("#people_stream .stream_element").length == n_posts.to_i }
    
    And /^I scroll down$/ do
    
      evaluate_script("window.scrollBy(0,3000000)")
    
      wait_until(30) { evaluate_script('$("#infscr-loading:visible").length') == 0 }
    
      And "I wait for the ajax to finish"
    
    Dan Hansen's avatar
    Dan Hansen a validé
    Then /^the notification dropdown should be visible$/ do
    
      find(:css, "#notification_dropdown").should be_visible
    
    Dan Hansen's avatar
    Dan Hansen a validé
    end
    
    
    When /^I resize my window to 800x600$/ do
      page.execute_script <<-JS
        window.resizeTo(800,600);
      JS
    
    Then /^I follow Edit Profile in the same window$/ do 
      page.execute_script("$('a[href=\"#{edit_profile_path}\"]').removeAttr('target')")
    
      And %(I follow "Edit Profile")
    end
    
    
    Then 'I should see an image attached to the post' do
      Then %{I should see a "img" within ".stream_element div.photo_attachments"}
    end
    
    Then 'I press the attached image' do
      Then %{I press the 1st "img" within ".stream_element div.photo_attachments"}