What worked for me is basically send page-down key to the element, which represents the infinite scroll.
Let's assume we have HTML like this
<div class="paginationScroll"infinitescroll="">
</div>
then the scrolling down works with the following code line:
.find('.paginationScroll').send_keys(Keys.PAGE_DOWN)
thanks,