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?
相关问题
- I receive the error: cannot find module 'cucum
- Port of the Rails app when running Cucumber tests
- Getting scenario and steps undefined in cucumber w
- How to output Cucumber background steps before eac
- How do I close() and quit() Selenium driver withou
相关文章
- How do you run cucumber with Scala 2.11 and sbt 0.
- How to use synchronize in Capybara exactly?
- before(:each) for all tests except one
- How to pass multiple parameter to Cucumber Runner
- Cucumber not serializing date string from datatabl
- selenium grid with cucumber
- How to get scenario name from a scenario outline i
- Handling excel spreadsheets with Cucumber Scenario
You could use javascript to achieve this:
I solved this with visit '#footer' inside a "scroll to the bottom of the page" step.