Bear with me, im fairly new to everything (this is not a homework question). I have been trying to get selenium to infinitely scroll down a page. My script works with every website I try it on except for under the discovery tag in Gumroad. Im not sure why its not working and I've tried everything that comes to mind along with seemingly everything google has to offer.
Any Help is appreciated!
-This issue only happens under the discovery section after searching
from selenium.webdriver.common.by import By
website = (r'https://discover.gumroad.com/?query=3d')
driver = webdriver.Chrome('C:\Program Files (x86)\chromedriver.exe')
driver.get(website)
driver.execute_script("window.scrollTo(0, 5000)")