Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to use my Cucumber/Capybara setup to test endless scroll by driving a browser and scrolling to the bottom of the page to ensure that the new content is loaded. Is there a way to do this?

share|improve this question

2 Answers

You could also use javascript to achieve this:

page.execute_script "window.scrollBy(0,10000)"

share|improve this answer
up vote 4 down vote accepted

I solved this with visit '#footer' inside a "scroll to the bottom of the page" step.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.