so I got this script that scrolls endlessly in an infinite loading page but its too fast I need to to be slower and give images time to load
from webdriver_manager.chrome import ChromeDriverManager
from time import*
driver = webdriver.Chrome(ChromeDriverManager().install())
driver.get("https://scrolller.com/")
while driver.find_element_by_tag_name('div'):
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
Divs=driver.find_element_by_tag_name('div').text
if 'End of Results' in Divs:
print('end')
break
else:
continue```