I was able to scroll a regular page use below code, but unable to scroll simple ajax infinite page like http://darsa.in/sly/examples/infinite.html
Any idea?
Working
driver = webdriver.Firefox()
driver.get('http://play.google.com/store')
driver.execute_script("window.scrollTo(0,10000);")
Not Working
driver = webdriver.Firefox()
driver.get('http://darsa.in/sly/examples/infinite.html')
driver.execute_script("window.scrollTo(0,10000);")
Thanks!