Trying to scroll down to the bottom of the page with selenium-webdriver python so that more products load.
driver = webdriver.Firefox()
driver.get('https://www.woolworths.com.au/Shop/Browse/back-to-school/free-school-labels')
driver.implicitly_wait(100)
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
time.sleep(100)
driver.quit()
The webpage loads but doesn't change.
Am I missing something?