From 00d89b0207e2a05e5a449c4ed2c59ba38c17c3ad Mon Sep 17 00:00:00 2001
From: Sarah Mei <sarahmei@gmail.com>
Date: Sat, 14 May 2011 16:58:37 -0700
Subject: [PATCH] Small updates to infinite scroll feature

---
 features/infinite_scroll.feature              | 2 +-
 features/step_definitions/custom_web_steps.rb | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/features/infinite_scroll.feature b/features/infinite_scroll.feature
index c0afdd52a9..7982715c07 100644
--- a/features/infinite_scroll.feature
+++ b/features/infinite_scroll.feature
@@ -72,7 +72,7 @@ Feature: infinite scroll
       Then I should see "No more"
 
     Scenario: On a tag page
-      And I am on the tag page for "seeded"
+      When I go to the tag page for "seeded"
       Then I should see 15 posts
       And I should see "alice - 15 - #seeded"
 
diff --git a/features/step_definitions/custom_web_steps.rb b/features/step_definitions/custom_web_steps.rb
index 7a8377a34b..aecc3fe8e5 100644
--- a/features/step_definitions/custom_web_steps.rb
+++ b/features/step_definitions/custom_web_steps.rb
@@ -198,3 +198,7 @@ And /^I scroll down$/ do
   sleep 1
   wait_until(10) { evaluate_script('$("#infscr-loading:visible").length') == 0 }
 end
+
+When /^I wait for (\d+) seconds$/ do |seconds|
+  sleep seconds.to_i
+end
\ No newline at end of file
-- 
GitLab