From 245bc1a05fb281ee046785a2e6ea763ac2693536 Mon Sep 17 00:00:00 2001 From: Sage Ross Date: Thu, 30 Dec 2021 13:09:31 -0800 Subject: [PATCH] Remove unused custom web step It looks like this web step is no longer used anywhere. It was implemented for the "Feature: inifinite scroll" test, but that no longer exists. --- features/step_definitions/custom_web_steps.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/features/step_definitions/custom_web_steps.rb b/features/step_definitions/custom_web_steps.rb index 040106fae..465d3dd48 100644 --- a/features/step_definitions/custom_web_steps.rb +++ b/features/step_definitions/custom_web_steps.rb @@ -167,10 +167,6 @@ Then /^I should see (\d+) contacts$/ do |n_posts| has_css?("#people-stream .stream-element", count: n_posts.to_i).should be true end -And /^I scroll down$/ do - page.execute_script("window.scrollBy(0,3000000)") -end - Then /^I should have scrolled down$/ do expect(page.evaluate_script("window.pageYOffset")).to be > 0 end