如何向下滚动到页面底部(无限滚动,pinterest)

How to scroll down less than all the way to bottom of page (Infinite scrolling, pinterest)

我怎样才能滚动得比一直滚动到底部少一点? 我不想一直滚动到底部,而是想滚动它的 50% 以获取更多内容。因为美丽的汤并没有抓住我需要的一切。 这是我用于在 pinterest 上向下滚动的代码。

while True:
  #Scroll down to bottom
  browser.execute_script("window.scrollTo(0, document.body.scrollHeight);")

  #Wait to load page
  time.sleep(scroll_pause)


  #Calculate new scroll height and compare with last scroll height
  new_height = browser.execute_script("return document.body.scrollHeight")
  if new_height == last_height:
    break
  last_height = new_height

我将不胜感激任何建议或帮助。

如果你想滚动一半的页面,你可以将 scrollHeight 除以 2。

  new_height = browser.execute_script("return document.body.scrollHeight / 2")